YTU 2441:C++練習問題複数クラス--リロード演算子2+
3654 ワード
2441:C++練習問題複数クラス--再ロード演算子2+
時間制限:1 Sec
メモリ制限:128 MB
コミット:847
解決:618
タイトルの説明
複数クラスComplexを定義し、演算子「+」を再ロードし、複数の加算に使用できるようにします.演算に参加する2つの演算量は,いずれもクラスオブジェクトであってもよいし,そのうちの1つが整数であり,順序が任意であってもよい.例えば、c 1+c 2、i+c 1、c 1+iはいずれも合法である(iを整数、c 1、c 2を複素とする).プログラムを編纂して、それぞれ2つの複素数の和、整数と複素数の和を求めます.
入力
2つの複素数1つの複素数と1つの整数1つの整数と1つの複素数
しゅつりょく
2つの複素数の和、複素数と整数の和、整数と複素数の和.
サンプル入力
サンプル出力
ヒント
前置コードおよびタイプ定義は、コミット時に含める必要がなく、プログラムの前部/*C++コード*/#include#includeusing namespace stdに自動的に追加されます.class Complex { public: Complex() { real=0; imag=0; } Complex(double r,double i) { real=r; imag=i; } Complex operator+(Complex &c2); Complex operator+(int &i); friend Complex operator+(int&,Complex &); void display(); private: double real; double imag; }; プライマリ関数は次のように指定されています.コミット時に含める必要はありません.プログラム末尾/*C++コード*/int main(){double real,imag;cin>>real>>imag;Complex c 1(real,imag);cin>>real>>imag;Complex c 2(real,imag);cout<#include <iostream>
#include <iomanip>
using namespace std;
class Complex
{
public:
Complex()
{
real=0;
imag=0;
}
Complex(double r,double i)
{
real=r;
imag=i;
}
Complex operator+(Complex &c2);
Complex operator+(int &i);
friend Complex operator+(int&,Complex &);
void display();
private:
double real;
double imag;
};
Complex Complex:: operator +(Complex &c2)
{
Complex c;
c.real=real+c2.real;
c.imag=imag+c2.imag;
return c;
}
Complex Complex:: operator +(int &i)
{
Complex c;
c.real=real+i;
c.imag=imag;
return c;
}
Complex operator + (int &i,Complex &c2)
{
Complex c;
c.real=i+c2.real;
c.imag=c2.imag;
return c;
}
void Complex::display()
{
cout<<"("<<real<<","<<imag<<"i)"<<endl;
}
int main()
{
double real,imag;
cin>>real>>imag;
Complex c1(real,imag);
cin>>real>>imag;
Complex c2(real,imag);
cout<<setiosflags(ios::fixed);
cout<<setprecision(2);
Complex c3=c1+c2;
cout<<"c1+c2=";
c3.display();
int i;
cin>>real>>imag;
cin>>i;
c3=Complex(real,imag)+i;
cout<<"c1+i=";
c3.display();
cin>>i;
cin>>real>>imag;
c1=Complex(real,imag);
c3=i+c1;
cout<<"i+c1=";
c3.display();
return 0;
}
時間制限:1 Sec
メモリ制限:128 MB
コミット:847
解決:618
タイトルの説明
複数クラスComplexを定義し、演算子「+」を再ロードし、複数の加算に使用できるようにします.演算に参加する2つの演算量は,いずれもクラスオブジェクトであってもよいし,そのうちの1つが整数であり,順序が任意であってもよい.例えば、c 1+c 2、i+c 1、c 1+iはいずれも合法である(iを整数、c 1、c 2を複素とする).プログラムを編纂して、それぞれ2つの複素数の和、整数と複素数の和を求めます.
入力
2つの複素数1つの複素数と1つの整数1つの整数と1つの複素数
しゅつりょく
2つの複素数の和、複素数と整数の和、整数と複素数の和.
サンプル入力
3 4 5 -10
3 4 5
5 3 4
サンプル出力
c1+c2=(8.00,-6.00i)
c1+i=(8.00,4.00i)
i+c1=(8.00,4.00i)
ヒント
前置コードおよびタイプ定義は、コミット時に含める必要がなく、プログラムの前部/*C++コード*/#include