学生成绩管理系统
tips : 应该写的注释都写了,适合初学者参考 ; 课直接运行。
某班最多不超过30人(具体人数由键盘输入),考试科目最多不超过6门(具体门数由键盘输入)。
请编写一个程序实现如下菜单驱动的学生成绩管理系统;要求:
(1)录入每个学生 的学号、姓名和各科考试成绩。
(2)计算每门课程的总分和平均分。
(3)计算每个学生的总分和平均分。
(4)按每个学生的总分由高到低排出名次表。
(5)按学号由小到大排出成绩表。
(6)按姓名的字典顺序排出成绩表。
(7)按学号查询学生排名及各科考试成绩。
(8)按姓名查询学生排名及各科考试成绩。
(9)按优秀(90100)、良好(8089)、中等(7079)、及格(6069)、不及格(0~59)5个类别,对每门课程分别统计每个类别的人数及所占的百分比。
(10)输出每个学生的学号、姓名、各科考试成绩、总分、平均分,以及每门课程的总分和平均分。
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include<stdlib.h>
struct Course {
int C_score;
char C_name[10];
};
struct Stu {
int id;
char name[10];
struct Course courses[6];
int total_score;
int ave;
int ranking;
};
struct Stu stu[30];
int real_stu;
int real_cou;
int temp[30] = { 0 };
int temp_forFun7[30] = { 0 }; //这里在函数5中修改了 temp ,但是fun7 要用,所以但copy出来一个。
int C_total_score[6] = { 0 };
int C_ave[6] = { 0 };
enum level {
优秀 = 0, 良好, 中等, 及格, 不及格
};
int getRanking(int id);
struct Stu* getStu(int id);
char* getLevel(int num);
int fun0();
int fun1();
int fun2();
int fun3();
int fun4();
int fun5();
int fun6();
int fun7();
int fun8();
int fun9();
int fun10();
int main()
{
while (1) {
//输入数字几,则运行程序几
switch (fun0()) {
case 0: exit(0); break;
case 1: fun1(); break;
case 2: fun2(); break;
case 3: fun3(); break;
case 4: fun4(); break;
case 5: fun5(); break;
case 6: fun6(); break;
case 7: fun7(); break;
case 8: fun8(); break;
case 9: fun9(); break;
case 10: fun10(); break;
case 11:/*fun11()*/; break;
}
}
return 0;
}
//0菜单
int fun0() {
//菜单
int n;
printf("*******************************************************\n");
printf("1. 录入每个学生 的学号、姓名和各科考试成绩.\n");
printf("2. 计算每门课程的总分和平均分。\n");
printf("3. 计算每个学生的总分和平均分。\n");
printf("4. 按每个学生的总分由高到低排出名次表。\n");
printf("5. 按学号由小到大排出成绩表。\n");
printf("6. 按姓名的字典顺序排出成绩表。\n");
printf("7. 按学号查询学生排名及各科考试成绩。\n");
printf("8. 按姓名查询学生排名及各科考试成绩。\n");
printf("9. 按优秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5个类别,对每门课程分别统计每个类别的人数及所占的百分比。\n");
printf("10.输出每个学生的学号、姓名、各科考试成绩、总分、平均分,以及每门课程的总分和平均分。\n");
printf("0. Exit\n");
printf("*******************************************************\n");
printf(" Please enter your choice :\n");
scanf_s("%d", &n);
return n;
}
//1,录入每个学生的学号、姓名和各科考试成绩。
int fun1() {
//(1)录入每个学生的学号、姓名和各科考试成绩。
printf("请输入总人数(不超过30人):");
scanf("%d", &real_stu);
printf("请输入总课程数(不超过6门):");
scanf("%d", &real_cou);
//(1)录入、每个 学生 的学号、姓名和各科考试成绩。
for (int i = 0; i < real_stu; i++) {//录入第 i 个学生信息:学号 姓名。
printf("请输入第 %d 个学生的信息 ( 输入格式提示 例如:[学号 姓名] 中括号里面的为一次录入,不用写中括号。)\n", i + 1);
scanf("%d %s", &(stu[i].id), stu[i].name);
printf("请输入需要录入课程的信息 ( 输入格式提示 例如:[课程名字 课程分数] 中括号里面的为一次录入,不用写中括号。)\n");
for (int j = 0; j < real_cou; j++) {//录入第 i 个学生课程信息:课程名字 分数。
scanf("%s %d", stu[i].courses[j].C_name, &(stu[i].courses[j].C_score));
}
}
return 0;
}
//2,计算每门课程的总分和平均分
int fun2() {
//(2)计算每门课程的总分和平均分
for (int i = 0; i < real_stu; i++) {
for (int j = 0; j < real_cou; j++) {
C_total_score[j] += stu[i].courses[j].C_score;
}
}
for (int i = 0; i < real_stu; i++) {
C_ave[i] = C_total_score[i] / real_stu;//第i门课的平均分
}
//最后不用print
for (int i = 0; i < real_cou; i++) {
printf("%d %d\n", C_total_score[i], C_ave[i]);
}
return 0;
}
//3,计算每个学生的总分和平均分。
int fun3() {
//(3)计算每个学生的总分和平均分。
for (int i = 0; i < real_stu; i++) {//第几个学生
for (int j = 0; j < real_cou; j++) {//第几门课
stu[i].total_score += stu[i].courses[j].C_score;
}
}
for (int i = 0; i < real_cou; i++) {
stu[i].ave = stu[i].total_score / real_cou;
}
for (int i = 0; i < real_stu; i++) {
printf("第%d个学生的总分为%d\n", i + 1, stu[i].total_score);
printf("第%d个学生的平均分为 % d\n", i + 1, stu[i].ave);
}
return 0;
}
//4,按每个学生的总分由高到低排出名次表。
int fun4() {
//(4)按每个学生的总分由高到低排出名次表。
for (int i = 0; i < real_stu; i++) {
temp[i] = stu[i].id; //创建数组,存id,通过id找到信息
}
int temp_for_swap = 0;
//排序
for (int i = 0; i < real_stu - 1; i++) {//轮次,n-1次
for (int j = 0; j < real_stu - i - 1; j++) {//一次排序
if (getStu(temp[j])->total_score < getStu(temp[j + 1])->total_score) {
//交换 temp[i] temp[i+1]
//t_temp,为中间作为交换的数组,存放id
//temp数组为存放id数组
temp_for_swap = temp[j];
temp[j] = temp[j + 1];
temp[j + 1] = temp_for_swap;
}
}
}
//输出
printf("按每个学生的总分由高到低排出的名次表为\n");
for (int i = 0; i < real_stu; i++) {
printf("%d %s %d\n", getStu(temp[i])->id, getStu(temp[i])->name, getStu(temp[i])->total_score);
}
//这里在函数5中修改了 temp ,但是fun7 要用,所以但copy出来一个。
memcpy(temp_forFun7,temp,real_stu);
return 0;
}
//5,按学号由小到大排出成绩表。
int fun5() {
//(5)按学号由小到大排出成绩表。
//排序,学号大小,也就是说,输入不一定按学号从小到大输入
int temp_for_swap = 0;
//排序
for (int i = 0; i < real_stu - 1; i++) {//轮次,n-1次
for (int j = 0; j < real_stu - i - 1; j++) {//一次排序
if (getStu(temp[j])->id > getStu(temp[j + 1])->id) {
//交换 temp[i] temp[i+1]
//t_temp,为中间作为交换的数组,存放id
//temp数组为存放id数组
temp_for_swap = temp[j];
temp[j] = temp[j + 1];
temp[j + 1] = temp_for_swap;
}
}
}
printf("按每个学生的按学号由小到大排出成绩表为\n");
for (int i = 0; i < real_stu; i++) {
printf("%d %s %d\n", getStu(temp[i])->id, getStu(temp[i])->name, getStu(temp[i])->total_score);
}
return 0;
}
//6,按姓名的字典顺序排出成绩表。
int fun6() {
//(6)按姓名的字典顺序排出成绩表。
//字典顺序,成绩表
//字符串比较
int temp_for_swap = 0;
for (int i = 0; i < real_stu - 1; i++) {
for (int j = 0; j < real_stu - i - 1; j++) {
if (strcmp(getStu(temp[j])->name, getStu(temp[j + 1])->name) > 0) {
temp_for_swap = temp[j];
temp[j] = temp[j + 1];
temp[j + 1] = temp_for_swap;
}
}
}
//print
printf("按学生姓名的字典顺序排出成绩表为\n");
for (int i = 0; i < real_stu; i++) {
printf("%d %s %d\n", getStu(temp[i])->id, getStu(temp[i])->name, getStu(temp[i])->total_score);
}
return 0;
}
//7,按学号查询学生排名及各科考试成绩。
int fun7() {
//按学号查询学生排名及各科考试成绩。
for (int i = 0; i < real_stu; i++) {
getStu(temp_forFun7[i])->ranking = getRanking(temp_forFun7[i]);//排名,由get函数初始化
}
int input_id;
printf("请输入需要查询成绩的学生的学号:");
scanf("%d", &input_id);
struct Stu* hit_stu = getStu(input_id);//把用getStu函数找到的学生信息,给hit——stu
printf("学号为%d的学生是%s\n", hit_stu->id, hit_stu->name);
printf("排名为%d\n", hit_stu->ranking + 1);
printf("其各科成绩为:\n");
for (int i = 0; i < real_cou; i++) {
printf("%s %d\n", hit_stu->courses[i].C_name, hit_stu->courses[i].C_score);
}
return 0;
}
//8,按姓名查询学生排名及各科考试成绩。
int fun8() {
//(8)按姓名查询学生排名及各科考试成绩。
char input_name[10] = { 0 };
printf("请输入需要查询成绩的学生的姓名:");
scanf("%s", input_name);
struct Stu* hit_stu = NULL;
for (int i = 0; i < real_stu; i++) {
if (strcmp(hit_stu->name, input_name) == 0) {
hit_stu = &stu[i];
}
}
if (hit_stu == NULL) {
printf("姓名为%s的学生不存在\n", input_name);
return;
}
printf("学号为%d的学生是%s\n", hit_stu->id, hit_stu->name);
printf("排名为%d\n", hit_stu->ranking + 1);
printf("其各科成绩为:\n");
for (int i = 0; i < real_stu; i++) {
printf("%s %d\n", hit_stu->courses[i].C_name, hit_stu->courses[i].C_score);
}
return 0;
}
//(9)按优秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5个类别,对每门课程分别统计每个类别的人数及所占的百分比。,switch语句,除以总人数,然后打印
int fun9() {
//(9)按优秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5个类别,
//对每门课程分别统计 每个类别的人数及所占的百分比。,除以总人数,然后打印
//等价于 int type [][];
// type[ 第几门课 ] [ 该课的类别 ]
//int** type = (int**)malloc(sizeof(int) * 5 * real_cou);
float type[6][5] = {0};
for (int i = 0; i < real_stu; i++) {
for (int j = 0; j < real_cou; j++) {
//type[i][j];
int temp_score = stu[i].courses[j].C_score;
if (temp_score >= 0 && temp_score < 59) {
type[j][不及格] += 1;//bad
}
else if (temp_score >= 60 && temp_score < 69) {
type[j][及格] += 1;//及格
}
else if (temp_score >= 70 && temp_score < 79) {
type[j][中等] += 1;//中等
}
else if (temp_score >= 80 && temp_score < 89) {
type[j][良好] += 1;//良好
}
else if (temp_score >= 90 && temp_score < 100) {
type[j][优秀] += 1;//优秀
}
}
}
//float** ratio = (float**)malloc(sizeof(float) * 5 * real_cou);
float ratio[6][5] = { 0.0 };
for (int i = 0; i < real_cou; i++)
{
for (int j = 0; j < 5; j++)
{
ratio[i][j] = type[i][j] / real_stu;
}
}
//print
for (int i = 0; i < real_cou; i++)
{
printf("第 %d 课程的各等级占比为:\n", i);
for (int j = 0; j < 5; j++)
{
printf("\t\t %s 占比 %f: \n", getLevel(j), ratio[i][j]);
}
}
return 0;
}
//(10)输出每个学生的学号、姓名、各科考试成绩、总分、平均分,以及每门课程的总分和平均分。
int fun10() {
for (int i = 0; i < real_stu; i++)
{
printf("姓名为%s\t学号为%d\t学生总分为%d\t平均分为%d\n", getStu(temp[i])->name, getStu(temp[i])->id, getStu(temp[i])->total_score, getStu(temp[i])->ave);
for (int j = 0; j < real_cou; j++) {
printf("\t科目为:%s \t考试成绩为: %d\t科目总分: %d\t科目平均分 :%d 。\n",
getStu(temp[i])->courses[j].C_name, getStu(temp[i])->courses[j].C_score, C_total_score[i], C_ave[i]);
}
}
return 0;
}
int getRanking(int id) {
for (int i = 0; i < real_stu; i++) {
if (id == temp[i]) {
return i;//i即为排名
}
}
}
struct Stu* getStu(int id) {
for (int i = 0; i < real_stu; i++)
{
if (stu[i].id == id) {
return &stu[i];
}
}
return NULL;
}
char* getLevel(int num) {
//enum level {
// 优秀 = 0, 良好, 中等, 及格, 不及格
//};
switch (num)
{
case 0:
return "优秀";
case 1:
return "良好";
case 2:
return "中等";
case 3:
return "及格";
case 4:
return "不及格";
default:
return "unknown";
}
}