#include<stdio.h> int main() { int id = 0; float c_score = 0.0;//float 四舍五入完 88.845 是 88.85. float math_score = 0.0; float eng_score = 0.0; scanf("%d;%f,%f,%f",&id,&c_score,&math_score,&eng_score); printf("The each subject score of No. %d is %.2f, %.2f, %.2f.",id,c_score,math_s...