题解 | #学生基本信息输入输出#
学生基本信息输入输出
https://www.nowcoder.com/practice/58b6a69b4bf943b49d2cd3c15770b9fd
#include <stdio.h>
int main() {
long int a;
float b, c, d;
scanf("%ld;%f,%f,%f", &a, &b, &c, &d);
printf("The each subject score of No. %ld is %.2f, %.2f, %.2f.", a, b, c, d);
return 0;
}
所以说这种简单的不行的题目因为没看题干写了七八次gg

查看1道真题和解析
