기록은 기억을 이기고 시간보다 오래 남는다.
반응형

개발자 20

[C/C++] c++ espresso(에스프레소) chapter 08 상속 연습문제

1. 클래스 각각 헤더에 정의를 cpp에 내용을 적었습니다. #pragma once #include using namespace std; class Employee { protected: string name; int number; public: Employee(); ~Employee(); void setEmployee(string n, int num); void getEmployee(); virtual void computeSalary(); }; #include"Employee.h" Employee::Employee() { this->name = ""; this->number = 0; } Employee::~Employee() {} void Employee::setEmployee(string n, in..

윤성우 열현 C++ 프로그래밍 문제 03-2번

문제 03-2번 문제 1번 #define _CRT_SECURE_NO_WARNINGS #include using namespace std; class Calculator { private: int AddCount = 0; int MinusCount = 0; int MutipleCount = 0; int DivisionCount = 0; public: float Add(float a, float b) { float result = a + b; AddCount++; return result; } float Minus(float a, float b) { float result = a - b; MinusCount++; return result; } float Division(float a, float b) { f..

반응형