#include #include using namespace std; class student{ public: student () /*无参的构造函数*/ { no = 0; school = 0; name = "student"; } student (int No, int School, string Name) { /*有参的构造函数*/ no = No; school = Schoo