零的执行人 发表于 2021-4-25 21:50:34

小白求助C++对象数组编程

题目:对象数组排序
内容:输入n个学生的学号,姓名,语文,数学分数,按语文分数对学生进行排序。
要求:
1:学生按语文成绩排序
2:能够输出前m名学生的相关信息
3:输出程序运行过程中一共建立的对象数目。

#include <iostream>
using namespace std;
class Student //定义Student类
{
public:
   
void display();
   
private:
       string name;
       int ID;
       int CH_score;
      int MA_score;
};

yuxijian2020 发表于 2021-4-25 22:37:57

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

class Student //定义Student类
{
public:
    static int allCount;

    Student() : mName(""), mID(0), chineseScore(0), mathScore(0) { allCount++; }
    Student(const string& name, int id, int cs, int ms) : mName(name), mID(id), chineseScore(cs), mathScore(ms) { allCount++; }

    void SetName(const string& name) { mName.assign(name); }
    string GetName() const { return mName; }

    void SetID(int id) { mID = id; }
    int GetID() const { return mID; }

    void SetChineseScore(int score) { chineseScore = score; }
    int GetChineseScore() const { return chineseScore; }

    void SetMathScore(int score) { mathScore = score; }
    int GetMathScore() const { return mathScore; }

private:
    string mName;
    int mID;
    int chineseScore;
    int mathScore;
};

int Student::allCount = 0;

int main()
{
    int n = 0;
    printf_s("请输入学生个数:");
    cin >> n;

    vector<Student> stus;
    for (size_t i = 0; i < n; ++i)
    {
      string name;
      int id = 0;
      int cs = 0;
      int ms = 0;

      printf_s("请输入第 %d 个学生的姓名:\t", i + 1);
      cin >> name;
      printf_s("请输入第 %d 个学生的学号:\t", i + 1);
      cin >> id;
      printf_s("请输入第 %d 个学生的语文分数:\t", i + 1);
      cin >> cs;
      printf_s("请输入第 %d 个学生的数学分数: \t", i + 1);
      cin >> ms;

      stus.emplace_back(Student(name, id, cs, ms));
    }
    //按语文分数排序
    sort(stus.begin(), stus.end(), [](const Student& a, const Student& b) {
      return a.GetChineseScore() < b.GetChineseScore();
    });
    //
    int number;
    printf_s("请输入需要显示前多少名学生:");
    cin >> number;

    for (size_t i = 0; i < number; ++i)
    {
      printf_s(" 姓名: %s\t学号: %04d\t语文: %d\t数学: %d\n",
            stus.GetName().c_str(), stus.GetID(), stus.GetChineseScore(), stus.GetMathScore());
    }

    printf_s("程序运行过程中,一共创建了 %d 个 Student 类的对象\n", Student::allCount);

    system("pause");

yuxijian2020 发表于 2021-4-25 22:41:04

我突然发现好像成绩排序一般都是从大到小哈{:10_277:}

//按语文分数排序
    sort(stus.begin(), stus.end(), [](const Student& a, const Student& b) {
      return a.GetChineseScore() < b.GetChineseScore();    //这里 改成 大于号 就是从大到小排列
    });
页: [1]
查看完整版本: 小白求助C++对象数组编程