某班期末考试科目为数学、英语和计算机,有最多不超过30人参加考试,考试后要求: 1)计算每个学生的总分和平均分; c++
时间: 2024-03-02 20:53:18 浏览: 115
好的,计算每个学生的总分和平均分可以在输入学生信息时进行计算,可以参考上面的代码实现:
```c++
#include <iostream>
#include <vector>
#include <string>
using namespace std;
struct Student {
string id;
int math_score;
int eng_score;
int cs_score;
int total_score;
double avg_score;
};
int main() {
vector<Student> students;
int n;
cout << "请输入学生人数: ";
cin >> n;
for (int i = 0; i < n; i++) {
Student s;
cout << "请输入第" << i + 1 << "个学生的学号、数学分数、英语分数、计算机分数: ";
cin >> s.id >> s.math_score >> s.eng_score >> s.cs_score;
s.total_score = s.math_score + s.eng_score + s.cs_score;
s.avg_score = s.total_score / 3.0;
students.push_back(s);
}
cout << "学号 数学 英语 计算机 总分 平均分" << endl;
for (int i = 0; i < n; i++) {
cout << students[i].id << " " << students[i].math_score << " " << students[i].eng_score << " " << students[i].cs_score << " " << students[i].total_score << " " << students[i].avg_score << endl;
}
return 0;
}
```
代码中,我们在输入每个学生的信息时,通过计算数学、英语、计算机三科的分数之和来得到每个学生的总分,并且根据总分计算出平均分。最后打印出每个学生的信息,包括学号、数学、英语、计算机分数、总分和平均分。
阅读全文