[C++] 급여관리 프로그램
클래스 관계도를 이용해서 급여 관리 프로그램 만들어보기 상위 데이터 클래스 #include "stdafx.h" #include #include #include #include using namespace std; class Info { //Info에 대한 정보를 넣는 data 클래스 string info; public: void setInfo(string info) { this->info = info; } string getInfo() { return info; } }; class Money { //Money에 대한 정보를 넣는 data 클래스 float money; public: void setMoney(float money) { this->money = money; } float getMoney() ..
LANGUAGE/C++
2018. 3. 12. 09:32