要求建立复数类,包括复数的实部虚部,和对复数进行加减乘除运算的函数.使用MFC,编写基于对话框的Wi
答案:2 悬赏:70 手机版
解决时间 2021-03-11 13:26
- 提问者网友:趣果有间
- 2021-03-11 03:36
要求建立复数类,包括复数的实部虚部,和对复数进行加减乘除运算的函数.使用MFC,编写基于对话框的Wi
最佳答案
- 五星知识达人网友:第四晚心情
- 2021-03-11 04:22
#include stdafx.h#include<iostream>using namespace std;class complex{protected:double real;double image;public:complex(double r=0,double i=0);complex(const complex&other);void print();complex operator-(const complex&other);};complex::complex(double r,double i){real=r;image=i;}complex::complex(const complex &other){real=other.real;image=other.image;}void complex::print(){cout<<real;if(image>0){cout<<+<<image<<i<<endl;}else{cout<<image<<i<<endl;}cout<<--------------<<endl;}complex complex::operator-(const complex &other){complex temp;temp.real=real-other.real;temp.image=image-other.image;return temp;}void main(){complex c1(1.1,2.2);complex c2(3,-4);c1.print();c2.print();complex c3;c3=c1-c2;c3.print();}另外,虚机团上产品团购,超级便宜
全部回答
- 1楼网友:举杯邀酒敬孤独
- 2021-03-11 04:44
正好我需要
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯