使用 float #include <stdio.h> int main() { int id; float c, math, english; scanf("%d;%f,%f,%f", &id, &c, &math, &english); printf("The each subject score of No. %d is %.2f, %.2f, %.2f.\n", id, c, math, english); return 0; } 使用 double #incl...