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