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