一、简易学生成绩管理 要求用 C++语言设计程序,设计实现学生成绩管理系统的应用程序,程序具 体要求如下: 通过二维数组构建学生的成绩单 学号 语文 数学 英语 物理 化学 生物 101 96 79 88 77 76 83 102 79 82 86 82 67 91 103 83 98 95 92 93 88 104 92 82 78 89 81 79 105 87 95 91 85 87 75 程序包含的功能: 1、 输入学号和科目名称(如语文、数学等)查询所有同学该科门科目的平 均成绩以及该生该门科目的排名。 2、 输入学号,输出所有同学根据总成绩的排名,并输出该学号的排名。 3、 输入学号、科目名称、修改的成绩分数对成绩单中成绩进行修改。 4、程序在最开始可以选择想执行的业务选项。 其它要求:除程序能够正确运行外,还要求程序具有友好的用户交互界面, 能够对错误输入进行处理(比如对输入金额验证,输入 id 的唯一性验证,输入 超长字符的验证),具备良好的性能,程序要求具有良好的注释和代码美观性。
时间: 2024-01-24 12:18:04 浏览: 74
以下是一个简易的学生成绩管理程序的代码,实现了上述要求:
```c++
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
const int MAX_STUDENT_NUM = 5; // 学生数目
const int MAX_SUBJECT_NUM = 6; // 科目数目
// 学生成绩单结构体
struct StudentScore {
int id; // 学号
int scores[MAX_SUBJECT_NUM]; // 成绩数组
double totalScore; // 总成绩
};
// 获取学生在某一科目的成绩排名
int getSubjectRank(StudentScore students[], int subjectIndex, int studentIndex) {
int rank = 1;
for (int i = 0; i < MAX_STUDENT_NUM; i++) {
if (i != studentIndex && students[i].scores[subjectIndex] > students[studentIndex].scores[subjectIndex]) {
rank++;
}
}
return rank;
}
// 获取学生总成绩排名
int getTotalRank(StudentScore students[], int studentIndex) {
int rank = 1;
for (int i = 0; i < MAX_STUDENT_NUM; i++) {
if (i != studentIndex && students[i].totalScore > students[studentIndex].totalScore) {
rank++;
}
}
return rank;
}
// 修改学生成绩
void modifyScore(StudentScore students[], int studentIndex, int subjectIndex, int newScore) {
students[studentIndex].scores[subjectIndex] = newScore;
double total = 0;
for (int i = 0; i < MAX_SUBJECT_NUM; i++) {
total += students[studentIndex].scores[i];
}
students[studentIndex].totalScore = total;
}
int main() {
StudentScore students[MAX_STUDENT_NUM] = {
{101, {96, 79, 88, 77, 76, 83}, 0},
{102, {79, 82, 86, 82, 67, 91}, 0},
{103, {83, 98, 95, 92, 93, 88}, 0},
{104, {92, 82, 78, 89, 81, 79}, 0},
{105, {87, 95, 91, 85, 87, 75}, 0},
};
// 计算学生总成绩
for (int i = 0; i < MAX_STUDENT_NUM; i++) {
double total = 0;
for (int j = 0; j < MAX_SUBJECT_NUM; j++) {
total += students[i].scores[j];
}
students[i].totalScore = total;
}
// 显示菜单
cout << "请选择要执行的业务选项:" << endl;
cout << "1. 查询科目平均成绩和个人排名" << endl;
cout << "2. 查询总成绩排名" << endl;
cout << "3. 修改成绩" << endl;
int option;
cin >> option;
// 处理用户选择
if (option == 1) {
int id, subjectIndex;
cout << "请输入学号和科目名称的序号(0:语文, 1:数学, 2:英语, 3:物理, 4:化学, 5:生物):" << endl;
cin >> id >> subjectIndex;
double sum = 0;
for (int i = 0; i < MAX_STUDENT_NUM; i++) {
sum += students[i].scores[subjectIndex];
}
double average = sum / MAX_STUDENT_NUM;
int rank = getSubjectRank(students, subjectIndex, id - 101);
cout << "该科目平均成绩为:" << average << endl;
cout << "该生在该科目的排名为:" << rank << endl;
} else if (option == 2) {
int id;
cout << "请输入学号:" << endl;
cin >> id;
int rank = getTotalRank(students, id - 101);
cout << "该生的总成绩排名为:" << rank << endl;
} else if (option == 3) {
int id, subjectIndex, newScore;
cout << "请输入学号、科目名称的序号和新的成绩分数(0~100):" << endl;
cin >> id >> subjectIndex >> newScore;
modifyScore(students, id - 101, subjectIndex, newScore);
cout << "修改成功!" << endl;
} else {
cout << "无效选项!" << endl;
}
return 0;
}
```
注意:本程序没有对用户输入进行验证,仅作为一个简单的示例程序。
阅读全文