定义一个复数类,通过重载运算符=,+=,-=,+,-,*,直接实现两个复数之间的各种计算。用c++做。
2个回答
展开全部
#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();
}
#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();
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
初中 的知识了。。 你把负数的公式 找到 照写就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询