甪高寂沧俄 3星
共回答了316个问题采纳率:92.5% 评论
#include<iostream>
using namespace std;
class complex{
int r,v;
public:
complex(int real=0,int virt=0):r(real),v(virt){}
void show(){
cout<<r<<"+"<<v<<"i"<<endl;
}
friend complex add(complex a,complex b)
{
complex p=complex(a.r+b.r,a.v+b.v);
return p;
}
};
int main(){
complex a(23,2),b(33,4),*p;
p= new complex;
*p=add(a,b);
p->show();
return 0;
}
16小时前
猜你喜欢的问题
5个月前1个回答
5个月前1个回答
5个月前1个回答
5个月前2个回答
5个月前1个回答
5个月前2个回答
热门问题推荐
3个月前1个回答
1个月前1个回答
1个月前2个回答
3个月前2个回答
3个月前1个回答
1个月前1个回答
3个月前1个回答
2个月前1个回答
3个月前1个回答