定义一个复数类,通过重载运算符=,+=,-=,+,-,*,直接实现两个复数之间的各种计算。用c++做。

 我来答
神龙见尾不见
推荐于2017-09-02 · TA获得超过224个赞
知道小有建树答主
回答量:286
采纳率:0%
帮助的人:112万
展开全部
#include <iostream.h>
#include<string.h>
#include<malloc.h>

class complex
{
int real;
int image;
public:
complex()
{
real=image=0;
}
complex(int x=0,int y=0):real(x),image(y)
{}
complex operator+(const complex &it)
{
real=real+it.real ;
image=image+it.image ;
return *this;
}
complex operator+=(const complex &it)
{
real+=it.real ;
image+=it.image ;
return *this;
}
complex operator-(const complex &it)
{
real=real-it.real ;
image=image-it.image ;
return *this;
}
complex operator-=(const complex &it)
{
real-=it.real ;
image-=it.image ;
return *this;
}
complex & operator=(const complex &it)
{
if(this!=&it)
{
real=it.real;
image=it.image;
}
return *this;
}
complex operator*(const complex &it)
{
int re=real;
real=real*it.real-image*it.image ;
image=image*it.real+re*it.image ;
return *this;
}
void show()
{
cout<<real<<" + "<<image<<"i"<<endl;
}

};
void main()
{
complex a(3,4),b(5,6);
a.show();
b.show();
a+b;
a.show();
a-b;
a.show();
a*b;
a.show();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
神奇浪漫_M
2012-10-28
知道答主
回答量:80
采纳率:0%
帮助的人:24.7万
展开全部
初中 的知识了。。 你把负数的公式 找到 照写就可以了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式