#include <iostream>
#include <string>
using namespace std;
class ImaginaryNumber
{
public:
ImaginaryNumber();
ImaginaryNumber(double a, double b);
void SetA(double a);
void SetB(double b);
double GetA();
double GetB();
char* GetImaginaryNumber();
private:
double a; //실수부
double b; //허수부 (b≠0)
};
ImaginaryNumber::ImaginaryNumber()
{
a = 0;
b = 0;
}
ImaginaryNumber::ImaginaryNumber(double a, double b)
{
this->a = a;
this->b = b;
}
void ImaginaryNumber::SetA(double a)
{
this->a = a;
}
void ImaginaryNumber::SetB(double b)
{
this->b = b;
}
double ImaginaryNumber::GetA()
{
return a;
}
double ImaginaryNumber::GetB()
{
return b;
}
char* ImaginaryNumber::GetImaginaryNumber()
{
static char text[30];
sprintf(text, "%lf %+lf i", a, b);
return text;
}
int main ()
{
ImaginaryNumber in1(3,-4);
ImaginaryNumber in2(5,-2);
cout << in1.GetImaginaryNumber() << endl;
cout << in2.GetImaginaryNumber() << endl;
return 0;
}
'Programming > C,CPP,CS' 카테고리의 다른 글
아두이노 기본 세팅 (0) | 2014.03.02 |
---|---|
CPP 연산자 오버로딩 (0) | 2014.01.16 |
비디오 대여점 C 소스코드 예제 #2 (0) | 2014.01.10 |
비디오 대여점 C 소스코드 예제 (0) | 2014.01.10 |
[업체고발] 부산 부곡동 XX터수리119 #2 (0) | 2014.01.05 |