C语言课程设计学生成绩管理
时间: 2024-01-13 22:03:54 浏览: 86
C语言课程设计学生成绩管理是一个用C语言编写的程序,用于管理学生的成绩信息。根据提供的引用内容,以下是一个实现学生成绩管理系统的方法:
```c
#include <stdio.h>
#include <stdlib.h>
struct Student {
char number[20];
char name[20];
char sex[10];
int Chinese;
int Math;
int English;
struct Student* next;
};
struct Student* head = NULL;
void ViewAll() {
system("cls");
struct Student* VA;
if (head != NULL) {
printf("所有学生成绩如下:\n");
for (VA = head; VA != NULL;) {
printf("学号:%s\t姓名:%s\t性别:%s\n", VA->number, VA->name, VA->sex);
printf("语文:%d\t数学:%d\t英语:%d\n", VA->Chinese, VA->Math, VA->English);
VA = VA->next;
}
} else {
printf("该系统中还未录入信息");
}
system("pause");
}
// 其他函数实现省略...
int main() {
// 主函数实现省略...
return 0;
}
```
阅读全文