在 C 语言中,可以使用如下代码来实现结构体的存储和计算:
``` #include <stdio.h> #include <stdlib.h>
#define STUDENT_NUM 30 // 学生数量 #define COURSE_NUM 4 // 课程数量
// 定义结构体 struct stdinfo { char no[20]; // 学号 char name[10]; // 姓名 float score[4]; // 成绩 float gpa; // 绩点 };
int main() { int i, j; float highest_gpa = 0.0; // 最高绩点 int highest_index = 0; // 最高绩点的学生编号 struct stdinfo students[STUDENT_NUM]; // 学生信息
// 输入学生信息 printf("Please enter students number:%d\n", STUDENT_NUM); printf("Please input all student information:\n"); for (i = 0; i < STUDENT_NUM; i++) { scanf("%s%s", students[i].no, students[i].name); // 输入学号和姓名 for (j = 0; j < COURSE_NUM; j++) { scanf("%f", &students[i].score[j]); // 输入成绩 } }
// 计算绩点 for (i = 0; i < STUDENT_NUM; i++) { float gpa = 0.0; // 绩点 for (j = 0; j < COURSE_NUM; j++) { if (students[i].score[j] < 60) { // 小于60分 gpa += 0.0; } else { // 大于等于60分 gpa += (students[i].score[j] - 60) / 10.0; } } students[i].gpa = gpa; // 记录绩点
// 更新最高绩点信息
if (gpa > highest_gpa) {
highest_gpa= gpa;
highest_index = i;
}
}
// 输出所有学生信息 printf("Id\tName\tScore1\tScore2\tScore3\tScore4\tgpa\n"); for (i = 0; i < STUDENT_NUM; i++) { printf("%s\t%s\t%.2f\t%.2f\t