根据学生姓名进行字典排序,根据成绩进行由高到低排序,根据学号或姓名查找学生成绩,统计各分数段(≥90分、80-89分、70-79分、60-69分、60分以下)的学生人数及其所占比例,并打印统计的结果。手动输入学生信息
时间: 2024-03-22 08:40:35 浏览: 74
对学生信息以成绩高到低排序
5星 · 资源好评率100%
好的,我来为您解答。
1. 根据学生姓名进行字典排序,再根据成绩进行由高到低排序,可以使用多关键字排序,其实现方法与上面的回答类似,不再赘述。
2. 根据学号或姓名查找学生成绩,可以使用一个哈希表或 map 来存储学生信息,将学号或姓名作为键,将学生成绩作为值。查找时,输入学号或姓名,即可在哈希表或 map 中查找到对应的学生成绩。
3. 统计各分数段(≥90分、80-89分、70-79分、60-69分、60分以下)的学生人数及其所占比例,可以使用一个计数数组,统计每个分数段的学生人数,然后根据总人数计算比例。具体实现如下:
```C++
#include <iostream>
#include <string>
#include <vector>
#include <unordered_map>
using namespace std;
struct Student {
string name;
int id;
int score;
};
// 多关键字排序规则
bool cmp(const Student& a, const Student& b) {
if (a.name != b.name) {
return a.name < b.name;
} else if (a.score != b.score) {
return a.score > b.score;
} else {
return a.id < b.id;
}
}
// 统计各分数段的学生人数及其所占比例
void countScore(vector<Student>& students) {
int count[5] = {0}; // 存储各分数段的学生人数
int total = students.size(); // 总人数
for (int i = 0; i < students.size(); i++) {
if (students[i].score >= 90) {
count[0]++;
} else if (students[i].score >= 80) {
count[1]++;
} else if (students[i].score >= 70) {
count[2]++;
} else if (students[i].score >= 60) {
count[3]++;
} else {
count[4]++;
}
}
// 输出统计结果
cout << "各分数段的学生人数及其所占比例:" << endl;
cout << ">=90分: " << count[0] << ",占比:" << (double)count[0]/total << endl;
cout << "80-89分: " << count[1] << ",占比:" << (double)count[1]/total << endl;
cout << "70-79分: " << count[2] << ",占比:" << (double)count[2]/total << endl;
cout << "60-69分: " << count[3] << ",占比:" << (double)count[3]/total << endl;
cout << "<60分: " << count[4] << ",占比:" << (double)count[4]/total << endl;
}
int main() {
vector<Student> students;
unordered_map<int, int> id2score;
unordered_map<string, int> name2score;
// 手动输入学生信息
int n;
cout << "请输入学生人数:";
cin >> n;
for (int i = 0; i < n; i++) {
Student s;
cout << "请输入第 " << i+1 << " 个学生的姓名、学号、成绩:";
cin >> s.name >> s.id >> s.score;
students.push_back(s);
id2score[s.id] = s.score;
name2score[s.name] = s.score;
}
// 根据姓名排序,再根据成绩排序
sort(students.begin(), students.end(), cmp);
// 统计各分数段的学生人数及其所占比例
countScore(students);
// 根据学号或姓名查找学生成绩
int id;
string name;
cout << "请输入要查找的学生学号:";
cin >> id;
if (id2score.find(id) != id2score.end()) {
cout << "学生 " << id << " 的成绩为:" << id2score[id] << endl;
} else {
cout << "找不到学生 " << id << endl;
}
cout << "请输入要查找的学生姓名:";
cin >> name;
if (name2score.find(name) != name2score.end()) {
cout << "学生 " << name << " 的成绩为:" << name2score[name] << endl;
} else {
cout << "找不到学生 " << name << endl;
}
return 0;
}
```
希望这个回答能够帮助到您!
阅读全文