C语言编写一个计算一个学生三门课平均成绩的程序。
时间: 2023-11-30 12:03:07 浏览: 166
```c
#include <stdio.h>
int main()
{
float score1, score2, score3, average;
printf("请输入该学生的三门课成绩:\n");
scanf("%f%f%f", &score1, &score2, &score3);
average = (score1 + score2 + score3) / 3;
printf("该学生的平均成绩为:%.2f\n", average);
return 0;
}
```
相关问题
用C语言写一个程序,要求如下:有5个学生,每个学生的数据包括:学号、姓名、三门课成绩,编写程序要求从键盘输入学生们的数据,并输出成绩报表(包括每人的学号,姓名、三门成绩及平均分数),还要求输出平均分在前3名的学生姓名及平均成绩。输入仅五行,输入5个学生的学号、姓名、三门课成绩,要求数据之间用空格分开。输出仅八行,输出5行的成绩报表(依原来顺序的成绩榜,包括:学号 姓名 三门课成绩 平均分),输出3行的成绩榜(平均成绩最高的三个学生的倒序成绩榜,包括:学号 姓名 三门课成绩 平均分)
好的,这是一个完成你要求的C程序:
```c
#include <stdio.h>
#include <string.h>
struct Student {
int id;
char name[20];
int score1;
int score2;
int score3;
float avg_score;
};
int main() {
struct Student students[5];
// 从键盘输入学生数据
for (int i = 0; i < 5; i++) {
printf("Enter student %d data (id name score1 score2 score3): ", i + 1);
scanf("%d %s %d %d %d", &students[i].id, students[i].name, &students[i].score1, &students[i].score2, &students[i].score3);
students[i].avg_score = (float)(students[i].score1 + students[i].score2 + students[i].score3) / 3.0;
}
// 输出成绩报表
printf("成绩报表:\n");
printf("学号\t姓名\t课程1\t课程2\t课程3\t平均分\n");
for (int i = 0; i < 5; i++) {
printf("%d\t%s\t%d\t%d\t%d\t%.2f\n", students[i].id, students[i].name, students[i].score1, students[i].score2, students[i].score3, students[i].avg_score);
}
// 找到平均成绩最高的三个学生
struct Student top_students[3];
memcpy(top_students, students, sizeof(struct Student) * 3);
for (int i = 3; i < 5; i++) {
for (int j = 0; j < 3; j++) {
if (students[i].avg_score > top_students[j].avg_score) {
memcpy(&top_students[j], &students[i], sizeof(struct Student));
break;
}
}
}
// 输出平均成绩在前三名的学生的成绩榜
printf("\n前三名的成绩榜:\n");
printf("学号\t姓名\t课程1\t课程2\t课程3\t平均分\n");
for (int i = 2; i >= 0; i--) {
printf("%d\t%s\t%d\t%d\t%d\t%.2f\n", top_students[i].id, top_students[i].name, top_students[i].score1, top_students[i].score2, top_students[i].score3, top_students[i].avg_score);
}
return 0;
}
```
该程序首先定义了一个结构体`Student`,用于存储每个学生的数据。然后,程序从键盘输入了所有学生的数据,并计算出每个学生的平均成绩。接着,程序输出了成绩报表,包括每个学生的学号、姓名、三门课成绩及平均分数。最后,程序找到了平均成绩在前三名的学生,并输出了这三个学生的成绩榜,包括学号、姓名、三门课成绩及平均分数。
用C语言编写程序 有10个学生,每个学生的数据包括学号,姓名,三门课的成绩(要求用结构体来定义学生的数据),从键盘输入10个学生的数据,要求打印出三门课总平均成绩,以及平均成绩最高分的学生的数据
首先,需要声明结构体:struct Student {int num; char name[20]; float score[3];}; 然后,循环输入10个学生的数据,分别存入结构体:for(int i=0;i<10;i++){scanf("%d%s%f%f%f",&stu[i].num,stu[i].name,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);}接着,计算三门课总平均成绩:float sum=0; for(int i=0;i<10;i++){sum+=stu[i].score[0]+stu[i].score[1]+stu[i].score[2];} float avg=sum/30;最后,找出三门课平均成绩最高的学生:float max=stu[0].score[0]+stu[0].score[1]+stu[0].score[2]; int k=0; for(int i=1;i<10;i++){if(stu[i].score[0]+stu[i].score[1]+stu[i].score[2]>max){max=stu[i].score[0]+stu[i].score[1]+stu[i].score[2];k=i;}} printf("三门课总平均成绩为:%f
最高平均成绩的学生是:%d %s",avg,stu[k].num,stu[k].name);
阅读全文