摘要:
#include<iostream> #include<cstring> using namespace std; class EV{ public: EV(const int &vR, const int& vN) { result = vR; n =vN; } EV(){} int getRes 阅读全文
摘要:
包含两个类:Employee及Dataset //employee.h #pragma once #include<string> namespace Record { const int kDefaultstartingSalary = 30000; class Employee { public 阅读全文