欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c++实验总结 学生比大小

程序员文章站 2022-04-08 10:52:54
c++实验总结  学生比大小:鉴于周五有c++模拟考试。。又是小崔出的全新的题目。。所以总结一下以前做过的实验和学过的重要的知识点或者。 学生比大小,没啥坑。就是实...

c++实验总结  学生比大小:鉴于周五有c++模拟考试。。又是小崔出的全新的题目。。所以总结一下以前做过的实验和学过的重要的知识点或者。

学生比大小,没啥坑。就是实验的测试用例不完全最开始的答案有bug重新改了之后应该没问题了。

#include 
#include
using namespace std;
class Student
{
public:
    string name;
    int age;
    Student()
    {
        name="";
        age=0;
    }
    int operator>(Student another)
    {
        if(age>another.age)
            return 1;
        else if(age==another.age)
        {
            int i=0;
            while(i!=name.size()||i!=another.name.size())
            {
                if(name[i]>another.name[i])
                    return 1;
                else if(name[i]==another.name[i])
                 i++;
                else
                    return 0;
            }
        }
    }
   friend ostream& operator<<(ostream& os,Student& another);

   friend istream& operator>>(istream& is,Student& another);

};
ostream& operator<<(ostream& os,Student& another)
    {
        cout<