반응형 C언어13 [C언어] 고객 관리 프로그램 #include #include #pragma warning(disable : 4996) #include #include using namespace std; class UserInfo { public: char m_Name[128]; //고객이름 int m_Principal; //원금 int m_Interest; //이자 int m_TotMoney; //총액 public: UserInfo() {//초기화 m_Name[0] = '\0'; m_Principal = 0; m_Interest = 0; m_TotMoney = 0; } public: void CacMoney()//이자와 총액을 계산해주는 함수 { m_Interest = m_Principal * 0.015f * 2;//1년에 1.5%이자, 2년치 .. 2020. 4. 2. 이전 1 2 3 4 다음 반응형