C语言使用结构体变量输入两学生的信息,比较两学生的成绩,输出成绩较高的学生的学号、姓名、性别、年龄和成绩。
时间: 2023-12-23 17:06:14 浏览: 113
c语言学生成绩管理系统源码.zip
5星 · 资源好评率100%
好的,这是一个基本的C语言问题,下面是代码实现:
```
#include <stdio.h>
#include <string.h>
struct Student {
char id[10];
char name[20];
char gender[4];
int age;
float score;
};
int main() {
struct Student stu1, stu2, top;
printf("请输入第1个学生的信息:\n");
printf("学号:");
scanf("%s", stu1.id);
printf("姓名:");
scanf("%s", stu1.name);
printf("性别:");
scanf("%s", stu1.gender);
printf("年龄:");
scanf("%d", &stu1.age);
printf("成绩:");
scanf("%f", &stu1.score);
printf("请输入第2个学生的信息:\n");
printf("学号:");
scanf("%s", stu2.id);
printf("姓名:");
scanf("%s", stu2.name);
printf("性别:");
scanf("%s", stu2.gender);
printf("年龄:");
scanf("%d", &stu2.age);
printf("成绩:");
scanf("%f", &stu2.score);
if(stu1.score > stu2.score) {
top = stu1;
}
else {
top = stu2;
}
printf("成绩较高的学生信息:\n");
printf("学号:%s\n", top.id);
printf("姓名:%s\n", top.name);
printf("性别:%s\n", top.gender);
printf("年龄:%d\n", top.age);
printf("成绩:%.2f\n", top.score);
return 0;
}
```
代码中定义了一个结构体`Student`,包含学号、姓名、性别、年龄和成绩五个成员变量。首先从用户输入中读取两个学生的信息,然后比较成绩大小,将成绩较高的学生信息保存在top结构体变量中,最后输出top的各项信息即可。
阅读全文