题解 | #学生基本信息输入输出#
ASCII码
http://www.nowcoder.com/practice/4280d330fe314e8f98cd5c593e3e9190
# include <stdio.h>
int main()
{
long a = 0;
float b, c, d;
scanf("%d;%f,%f,%f",&a,&b,&c,&d);
printf("The each subject score of No. %1d is %.2f, %.2f, %.2f.",a,b,c,d);
return 0;
}