//Student.h #pragma once #include #include using namespace std; class Student { string name; const int num; public: Student(int num,string name); bool IsEqual(int num)const; void View()const; bool operator==(int num)const; }; bool operator == (int num, const Student &stu);