用C语言结构型等完成:设有学生信息如下:学号(长整型)、姓名(字符串型)、年龄(整型)、课程1成绩(实型)、课程2成绩(实型)、课程3成绩(实型)、课程4成绩(实型)、课程5成绩(实型)、课程6成绩(实型)、课程6成绩(实型)、总分(实型)、平均分(实型)。试编写程序,输入3个学生的上述信息,计算每个学生的总分、平均分,然后输出每个学生学号、姓名、总分、平均分
时间: 2023-07-04 17:06:50 浏览: 77
C语言输入学生成绩,计算并输出这些学生的最低分、最高分、平均分。
下面是用C语言结构体完成的代码:
```c
#include <stdio.h>
#include <string.h>
struct Student {
long int id;
char name[20];
int age;
float score[6];
float total;
float average;
};
int main() {
struct Student stu[3];
int i, j;
for (i = 0; i < 3; i++) {
printf("Please enter the information of student %d:\n", i+1);
printf("ID: ");
scanf("%ld", &stu[i].id);
printf("Name: ");
scanf("%s", stu[i].name);
printf("Age: ");
scanf("%d", &stu[i].age);
for (j = 0; j < 6; j++) {
printf("Score %d: ", j+1);
scanf("%f", &stu[i].score[j]);
stu[i].total += stu[i].score[j];
}
stu[i].average = stu[i].total / 6;
printf("\n");
}
printf("Student information:\n");
for (i = 0; i < 3; i++) {
printf("ID: %ld\n", stu[i].id);
printf("Name: %s\n", stu[i].name);
printf("Total Score: %.2f\n", stu[i].total);
printf("Average Score: %.2f\n", stu[i].average);
printf("\n");
}
return 0;
}
```
该程序定义了一个结构体`Student`,包含了学生的所有信息,并且使用了循环来输入3个学生的信息,计算每个学生的总分和平均分,最后输出每个学生的学号、姓名、总分和平均分。
阅读全文