#include <stdio.h> #define N 4 // 定义学生结构体 struct student { long id; char name[10]; char gender; float score1; float score2; float score3; float total_score; float average_score; };// 计算学生总分和平均分的函数 void count(struct student *stu) { for (int i = 0; i < N; i++) { stu[i].total_score = stu[i].score1 + stu[i].score2 + stu[i].score3; stu[i].average_score = stu[i].total_score / 3.0; } } int main(void) { // 定义学生数组 struct student stu[N]; // 输入学生数据 printf("学号 姓名 性别 课1 课2 课3\n"); for (int i = 0; i < N; i++) { scanf("%ld%s %c%f%f%f", &stu[i].id, &stu[i].name, &stu[i].gender, &stu[i].score1, &stu[i].score2, &stu[i].score3); } // 计算每个学生的总分和平均分 count(stu); // 输出学生数据 printf("学号 姓名 性别 课1 课2 课3 总分 平均分\n"); for (int i = 0; i < N; i++) { printf("%8ld%10s%3c %8ld%10s%3c %8ld%10s%3c %6.1f %6.1f %6.1f\n", stu[i].id, stu[i].name, stu[i].gender, stu[i].score1, stu[i].score2, stu[i].score3, stu[i].total_score, stu[i].average_score); } return 0; }检查程序
时间: 2023-12-11 10:03:55 浏览: 75
这是一段 C 语言程序,用于输入学生的学号、姓名、性别以及三门课的成绩,然后计算每个学生的总分和平均分,并输出所有学生的数据。程序中使用了一个结构体来表示每个学生的数据,并定义了一个计算总分和平均分的函数 count。
程序中的宏定义 #define N 4 定义了学生的数量,可以根据需要修改。在 main 函数中,首先定义了一个学生数组 stu[N],然后通过循环输入每个学生的数据。接着调用 count 函数计算每个学生的总分和平均分。最后,再次循环输出每个学生的数据,包括学号、姓名、性别、三门课的成绩、总分和平均分。
程序的语法看起来没有问题,但还需要测试和验证,确保程序的正确性和稳定性。
相关问题
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_SIZE 100 // 学生信息结构体 typedef struct { char num[10]; // 学号 char name[10]; // 姓名 char clas[10]; // 班级 char sex[10]; // 性别 float score; // 成绩 } Student; // 学生信息数组 Student studentList[MAX_SIZE]; int size = 0; 帮我添加一个可以查询学生成绩最大值和最小值的分函数代码
可以添加以下代码来实现查询学生成绩最大值和最小值的函数:
```c
// 查询学生成绩最大值和最小值
void findMinMaxScore() {
float maxScore = 0, minScore = 100;
for (int i = 0; i < size; i++) {
if (studentList[i].score > maxScore) {
maxScore = studentList[i].score;
}
if (studentList[i].score < minScore) {
minScore = studentList[i].score;
}
}
printf("成绩最高的学生信息:\n");
for (int i = 0; i < size; i++) {
if (studentList[i].score == maxScore) {
printf("学号:%s 姓名:%s 班级:%s 性别:%s 成绩:%.2f\n",
studentList[i].num, studentList[i].name,
studentList[i].clas, studentList[i].sex,
studentList[i].score);
}
}
printf("成绩最低的学生信息:\n");
for (int i = 0; i < size; i++) {
if (studentList[i].score == minScore) {
printf("学号:%s 姓名:%s 班级:%s 性别:%s 成绩:%.2f\n",
studentList[i].num, studentList[i].name,
studentList[i].clas, studentList[i].sex,
studentList[i].score);
}
}
}
```
在主函数中,可以通过调用该函数来查询学生成绩最大值和最小值:
```c
int main() {
// 添加学生信息
// ...
// 查询学生成绩最大值和最小值
findMinMaxScore();
return 0;
}
```
优化这段代码#include<stdio.h> #include<stdlib.h> #include<malloc.h> #include<conio.h> #define OK 1 #define error 0 #define MVNum 100 #define MAXSIZE 10 typedef int OtherInfo,QElemtype; typedef char VerTexType; //结构体定义 typedef struct ArcNode{ int adjvex;
首先,该段代码中包含了一些不必要的头文件,例如:conio.h,malloc.h等。建议只保留stdio.h和stdlib.h。
其次,可以将#define OK 1和#define error 0替换为枚举类型,使代码更加清晰易读。
最后,在结构体定义中,可以将OtherInfo和QElemtype合并为一个类型,避免定义过多类型。同时,也可以将结构体中的变量类型进行优化,例如将int类型的adjvex改为short或者char类型。
重构后的代码如下所示:
```c
#include <stdio.h>
#include <stdlib.h>
#define MAX_VERTEX_NUM 100
#define MAX_ARC_NUM 10
typedef enum {
ERROR = 0,
OK = 1
} Status;
typedef char VertexType;
typedef int ArcType;
typedef struct ArcNode {
int adjvex;
struct ArcNode* nextarc;
ArcType* info;
} ArcNode;
typedef struct VNode {
VertexType data;
ArcNode* firstarc;
} VNode, AdjList[MAX_VERTEX_NUM];
typedef struct {
AdjList vertices;
int vexnum, arcnum;
} ALGraph;
```
希望可以帮到你。
阅读全文