/*
*copyright (c)2015,烟台大学计算机学院
*All rights reserved
*文件名称:project.cpp
*作者:孙春红
*完成日期:2015年6月24日
*版本号:v1.0
*
*问题描述: 定义一个复数类Complex,重载运算符“+”
使之能用于复数的加法运算。将运算符函数重载为非成员、
非友元的普通函数。编写程序,求两个复数之和。
*输入描述:两个复数
*程序输出: 复数之和
*/
#include <iostream>
#include <iomanip>
using namespace std;
class Complex
{
public:
Complex();
Complex(double r,double i);
double get_real();
double get_imag();
void display();
private:
double real;
double imag;
};
Complex::Complex(){}
Complex::Complex(double r,double i):real(r),imag(i){}
double Complex::get_imag()
{
return imag;
}
double Complex::get_real()
{
return real;
}
void Complex::display()
{
cout<<"("<<real<<","<<imag<<"i)"<<endl;
}
Complex operator +(Complex &c1,Complex &c2)
{
return Complex(c1.get_real()+c2.get_real(),c1.get_imag()+c2.get_imag());
}
int main()
{
double real,imag;
cin>>real>>imag;
Complex c1(real,imag);
cin>>real>>imag;
Complex c2(real,imag);
Complex c3=c1+c2;
cout<<setiosflags(ios::fixed);
cout<<setprecision(2);
c3.display();
return 0;
}
OJ积累--运算符重载+(普通函数)
最新推荐文章于 2024-10-09 20:45:03 发布