#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int x =0; float c=0.0f; float s = 0.0f; float y = 0.0f; scanf("%d;%f,%f,%f", & x,&c,&s,&y); printf("The each subject score of No. %d is %0.2f, %0.2f, %0.2f.\n", x,c,s,y); return 0; }