C++/프로그램 연습

Tower 실습하기

컴공 윤서혜 학습일기 2020. 9. 30. 16:03

using namespace std;

class Tower {
private:
	int height;

public:
	Tower();
	Tower(int tall);
	int getHeight();
};
#include <stdio.h>
#include <iostream>
#include <string>
#include <windows.h>
#include "circle.h"

using namespace std;

Tower::Tower() {
	height = 1;
}

Tower::Tower(int tall) {
	height = tall;
}

int Tower::getHeight() {
	return height;
}
#include <stdio.h>
#include <iostream>
#include <string.h>
#include "circle.h"

int main(void) {
	Tower myTower;
	Tower seoulTower(100);

	cout << "높이는 " << myTower.getHeight() << "미터" << endl;
	cout << "높이는 " << seoulTower.getHeight() << "미터" << endl;
	return 0;
}

 

'C++ > 프로그램 연습' 카테고리의 다른 글

은행계좌 파일나눠서 써보기 (account.h, account.cpp, main.cpp)  (0) 2020.09.30
은행계좌 만들기  (0) 2020.09.30
커피 주문하기  (0) 2020.09.30