| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1628 人关注过本帖
标题:两个 复数相加.
取消只看楼主 加入收藏
jxry8888
Rank: 1
等 级:新手上路
帖 子:97
专家分:0
注 册:2006-8-13
收藏
 问题点数:0 回复次数:0 
两个 复数相加.

是在是不想发到这的,但是考虑到又很多任可能会的就.........而且c++ 论坛很久都没有人给与答案不的不求助
人气旺盛的c板块了
//main函数
#include <iostream>
using namespace std;

#include "complex.h"

int main(void)
{
Complex a( 3.0, 4.0 );
Complex c( 8.7, 9.0 );
Complex cd;
cd = a.operator +(c);
cout << cd;
/* 在这个地方出错.d:\net\djx\Main.cpp(12): error C2679: 二 进制“<<” : 没有找到接受“<未知>”类型的右操作数的运算符(或没有可接受的转换)*/
cout << "Bye!";
return 0;
}
//头文件
#ifndef COMPLEX_H_
#define COMPLEX_H_

using namespace std;

class Complex
{
private:
double real;
double imaginary;
public:
Complex();
Complex( double rea , double ima = 0.0 );

void setReal( double rea );
void setImag( double ima );

Complex operator+( const Complex &a );
friend ostream & operator<<( ostream &, Complex & );
};

#endif
//函数实现
#include <iostream>
using namespace std;

#include "complex.h"

Complex::Complex()
{
real = 0.0;
imaginary = 0.0;
}

Complex::Complex( double rea , double ima )
{
real = rea;
imaginary = ima;
}

void Complex::setReal( double rea )
{
real = rea;
}

void Complex::setImag( double ima )
{
imaginary = ima;
}

Complex Complex::operator+( const Complex &a )
{
return Complex( real + a.real, imaginary + a.imaginary );
}

ostream & operator<< ( ostream &os , Complex &com )
{
os << "the real is: "<< com.real;
os << "\nthe imaginary is "<< com.imaginary ;
return os;
}

搜索更多相关主题的帖子: 复数 相加 Complex main include 
2006-10-08 00:11
快速回复:两个 复数相加.
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.020969 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved