[1] 编写一个学生总评成绩管理系统,对课程信息、学生信息、学生所选某门课程(由自己确定)的平时成绩和期末卷面成绩以及最后的加权期末总评成绩进行管理。 [2] 学生的信息包括:学生学号,姓名,班级;课程包括以下信息:课程编号、课程名称、任课老师、平时成绩和期末考试成绩的占比等;学生的平时成绩至少由3项构成(如实验成绩、考勤成绩、作业成绩、讨论成绩、报告成绩等,每一项占平时成绩的比例由自己设定)。平时成绩和期末成绩的占比可修改,但平时成绩占比不得低于40%
时间: 2024-01-25 21:03:51 浏览: 69
c++课程设计——学生成绩管理系统
好的,根据您的需求,我可以给您提供以下的建议和思路:
1. 数据结构设计:
首先,我们需要设计数据结构来存储学生信息、课程信息以及对应的成绩信息。可以考虑使用类或结构体来实现,例如:
```
class Student {
public:
string id; // 学生学号
string name; // 学生姓名
string cls; // 学生班级
vector<CourseScore> scores; // 学生所选课程的成绩信息
};
class Course {
public:
string id; // 课程编号
string name; // 课程名称
string teacher; // 任课老师
double weight1; // 平时成绩的占比
double weight2; // 期末成绩的占比
vector<StudentScore> scores; // 选修该课程的学生的成绩信息
};
class StudentScore {
public:
string id; // 学生学号
double score1; // 平时成绩
double score2; // 期末成绩
double score3; // 最终成绩
};
class CourseScore {
public:
string id; // 课程编号
double score1; // 平时成绩
double score2; // 期末成绩
};
```
其中,`StudentScore`表示一个学生在一门课程中的成绩信息,`CourseScore`表示一门课程的平时成绩和期末成绩,`scores`是一个存储`StudentScore`或`CourseScore`对象的向量。
2. 主要功能实现:
(1)添加学生信息和课程信息:
可以使用文件或数据库来存储学生信息和课程信息,程序启动时从文件或数据库中读取数据并创建相应的对象。此外,在程序运行过程中也可以动态地添加学生信息和课程信息,例如:
```
void addStudent(vector<Student>& students) {
Student s;
// 输入学生信息
students.push_back(s);
}
void addCourse(vector<Course>& courses) {
Course c;
// 输入课程信息
courses.push_back(c);
}
```
(2)添加学生的成绩信息:
添加学生的成绩信息就是将`StudentScore`对象添加到对应的`Course`对象中,例如:
```
void addScore(vector<Course>& courses, string sid, string cid, double score1, double score2) {
for (auto& c : courses) {
if (c.id == cid) {
for (auto& s : c.scores) {
if (s.id == sid) {
// 更新学生在该课程中的成绩信息
s.score1 = score1;
s.score2 = score2;
s.score3 = score1 * c.weight1 + score2 * c.weight2;
return;
}
}
// 学生不存在,添加学生
StudentScore ss;
ss.id = sid;
ss.score1 = score1;
ss.score2 = score2;
ss.score3 = score1 * c.weight1 + score2 * c.weight2;
c.scores.push_back(ss);
return;
}
}
// 课程不存在
cout << "Course not found!" << endl;
}
```
(3)查看学生的成绩信息:
可以按照学生或课程来查看成绩信息,例如:
```
void printStudentScores(const vector<Course>& courses, const string& sid) {
for (auto& c : courses) {
for (auto& s : c.scores) {
if (s.id == sid) {
cout << "Course ID: " << c.id << endl;
cout << "Course Name: " << c.name << endl;
cout << "Teacher: " << c.teacher << endl;
cout << "Weight1: " << c.weight1 << endl;
cout << "Weight2: " << c.weight2 << endl;
cout << "Score1: " << s.score1 << endl;
cout << "Score2: " << s.score2 << endl;
cout << "Score3: " << s.score3 << endl;
cout << endl;
break;
}
}
}
}
void printCourseScores(const vector<Course>& courses, const string& cid) {
for (auto& c : courses) {
if (c.id == cid) {
cout << "Course ID: " << c.id << endl;
cout << "Course Name: " << c.name << endl;
cout << "Teacher: " << c.teacher << endl;
cout << "Weight1: " << c.weight1 << endl;
cout << "Weight2: " << c.weight2 << endl;
for (auto& s : c.scores) {
cout << "Student ID: " << s.id << endl;
cout << "Student Name: " << s.name << endl;
cout << "Student Class: " << s.cls << endl;
cout << "Score1: " << s.score1 << endl;
cout << "Score2: " << s.score2 << endl;
cout << "Score3: " << s.score3 << endl;
cout << endl;
}
break;
}
}
}
```
(4)修改平时成绩和期末成绩的占比:
可以提供一个设置界面,让用户输入新的占比值,并更新对应的`Course`对象的属性值,例如:
```
void setWeights(vector<Course>& courses, const string& cid, double weight1, double weight2) {
for (auto& c : courses) {
if (c.id == cid) {
c.weight1 = weight1;
c.weight2 = weight2;
// 更新学生的最终成绩
for (auto& s : c.scores) {
s.score3 = s.score1 * c.weight1 + s.score2 * c.weight2;
}
return;
}
}
cout << "Course not found!" << endl;
}
```
以上是对C++学生课程成绩管理系统的建议和思路,希望能对您有所帮助。
阅读全文