C++

명품 C++ 실습문제 3장 8번

Hs’s Coding vlog 2023. 1. 3. 18:59
#include <iostream>
#include <string>
using namespace std;
class Integer
{
	int nums;
	char ch[40];
public:
	Integer(int k);
	Integer(string p);
	void set(int x);
	int get();
	int isEven();
	};

Integer::Integer(int k)
{
	nums = k;
}

Integer::Integer(string p)
{
	nums = stoi(p);
}

void Integer::set(int x) {
	nums = x;
}
int Integer::get() {//멤버함수 구현
	return nums;
}
int Integer::isEven() {
	if (nums % 2 == 0) {
		return 1;
	}
}

int main() {
	Integer n(30);
	cout << n.get() << ' ';
	n.set(50);
	cout << n.get() << ' ';

	Integer m("300");
	cout << m.get() << ' ';
	cout << m.isEven();
}

'C++' 카테고리의 다른 글

명품 C++ 3장 오픈챌린지  (0) 2023.01.03
명품 C++ 실습문제 3장 10번  (0) 2023.01.03
명품 C++ 실습문제 3장 7번  (0) 2023.01.03
명품 C++ 실습문제 3장 6번  (0) 2023.01.03
명품 C++ 실습문제 3장 4번  (0) 2023.01.03