摘要: #include<iostream> using namespace std; #include<string> #define MAX 1000 struct Person { string m_Name; int m_Sex; int m_Age; string m_Phone; string 阅读全文
posted @ 2021-08-14 18:30 卿源 阅读(102) 评论(0) 推荐(0)
摘要: #头文件 ##Boss.h #pragma once #include<iostream> using namespace std; #include"Worker.h" class Boss:public Worker { public: Boss(int id, string name, int 阅读全文
posted @ 2021-08-14 18:24 卿源 阅读(119) 评论(0) 推荐(0)