CPP 실습

실습과제 모음 2014. 1. 15. 13:30 Posted by TanSanC
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

#include <iostream>

using namespace std;


class WeightControl

{

private:

double  height, weight;

int  WeightStatus;

public:

void  setHeight(const double h);

void  setWeight(const double w);

double  getHeight();

double  getWeight();

int  StdWeight();

int  getWeightStatus();

}

int main()

{

WeightControl wc;

wc.setHeight(170);

wc.setWeight(80);

wc.StdWeight();

cout << wc.getWeightStatus() << endl;

return 0;

}

'실습과제 모음' 카테고리의 다른 글

CPP GeometricObject  (0) 2014.01.21
cpp 실습  (0) 2014.01.15
JAVA 실습 과제 2014 01 02  (0) 2014.01.02
반복문 실습 별찍기  (0) 2013.12.31
실습과제 모음  (0) 2013.12.31