C +类错误输出

时间:2011-04-18 04:09:26

标签: c++ class dev-c++

所有代码都正常运行但没有错误,但命令Setreal()Setimag() 下面给出了错误的输出。


#include <iostream>
using namespace std;

class complex
{ public:
     bool Readcomplex()
     { cout<<"Enter the real part"<<endl;
       cin>>real;
       cout<<"Enter the imaginary part"<<endl;
       cin>>imag;
       return true; };
     double Getreal()
     { return real;
            };
     double Getimag()
     { return imag;
            };
     double Add(complex c)
     { real=real+c.real;
       imag=imag+c.imag;
            };
     double Setimag(double im)
     { imag=im;
          };
     double Setreal(double re)
     { real=re;
          };
     void Multiply(complex c)
     { double x;
       x=real*c.real-imag*c.imag;
       imag=real*c.imag+imag*c.real;
       real=x;
          };
 private:
      double real;
      double imag;   
  };
 int main()
 { complex A,B,E,R;
 double C,D;
 A.Readcomplex();
 B.Readcomplex();
 cout<<"The complex no. A is "<<A.Getreal()<<"+i"<<A.Getimag()<<endl;
 cout<<"The complex no. B is "<<B.Getreal()<<"+i"<<B.Getimag()<<endl;
 A.Add(B); //Result stored in A.
 cout<<"The complex no. A2 is "<<A.Getreal()<<"+i"<<A.Getimag()<<endl;
 cout<<"Set the real of A"<<endl;
 cin>>C;
 cout<<"and set the imaginary part"<<endl;
 cin>>D;
 cout<<"the new A is"<<A.Setreal(C)<<"+i"<<A.Setimag(D)<<endl; //WRONG OUTPUT
 A.Multiply(B);
 cout<<"The complex no. A is "<<A.Getreal()<<"+i"<<A.Getimag()<<endl;
 system("pause");
 return 0;}

错误的结果是cout<<"the new A is"<<A.Setreal(C)<<"+i"<<A.Setimag(D)<<endl; //WRONG OUTPUT,因为结果是1.#QNAN+i1.#QNAN而不是像C+iD那样的C和D的值

2 个答案:

答案 0 :(得分:3)

这些方法应该有一个return语句:

double Setimag(double im)
{
  return imag=im;
};
double Setreal(double re)
{
  return real=re;
};

答案 1 :(得分:1)

double Setreal(double re)
 { 
   real=re;
 };

这个函数应该返回double类型的东西,但它不会......