#include <stdio.h> int main() { int id = 0; float a = 0; float b = 0; float c = 0; scanf("%d;%f,%f,%f",&id,&a,&b,&c); printf("The each subject score of No. %d is %.2f, %.2f, %.2f.",id,a+0.001,b,c); return 0; } 有友友会发现 17140216;21.195,90.554,100.00 这组用例不会通过,这是...