请根据程序中的注释,把程序补充完整 include <stdio.h> struct student { char name[20];

请根据程序中的注释,把程序补充完整 include <stdio.h> struct student { char name[20]; double score; }; int main() { struct student s; //用scanf函数读入一个学生的姓名、和成绩,存入s (________________________________); printf("%s\t%.1f\n", s.name, s.score); return 0; }

时间:2023-09-18 14:19:43

相似题目