本关任务:从键盘输入两个学生的学号,姓名和成绩(整数),分别存入结构体中,输出成绩较高的学生的学号,姓名和成绩。 #include<stdio.h> /*********Begin*********/ /*********End*********/
时间: 2024-01-09 13:23:09 浏览: 153
接收从键盘输入某班学生的学号、姓名、成绩,对学 生的成绩进行排序.zip
5星 · 资源好评率100%
```c
#include<stdio.h>
struct student{
long number;
char name[20];
int score;
};
int main() {
struct student student1, student2;
// 输入学生1的信息
scanf("%ld%s%d", &student1.number, student1.name, &student1.score);
// 输入学生2的信息
scanf("%ld%s%d", &student2.number, student2.name, &student2.score);
// 比较两个学生的成绩并输出较高的学生信息
if(student1.score > student2.score) {
printf("%ld %s %d\n", student1.number, student1.name, student1.score);
} else {
printf("%ld %s %d\n", student2.number, student2.name, student2.score);
}
return 0;
}
```
阅读全文