#include <stdio.h> struct student{ int number; float c; float math; float english; }; int main() { struct student a; scanf("%d;",&a.number); scanf("%f,",&a.c); scanf("%f,",&a.math); scanf("%f",&a.english); printf("The each subject score of No. %d is %.2f, %.2f, %.2f." ,a.number,a.c,a.math,a.english); return 0; }