请各位大侠帮小弟看看 麻烦大家了
定义一个复数类Complex,内有两个成员变量:实部real和虚部image,还有两个成员方法add( )和sub( ),用来求两复数的和以及两复数的差。编程验证该程序的复数加减运算是正确的。
Class Complex{
double real,image;
{
public complex(){
this.real=0;
this.image=0;
}
public complex(double x,double y){
this,x=real;
this.y=image;
}
public complex add complex(complex a,complex b) {
Complex temp=nex complex();
temp.real=a.real+b.real;
temp.image=a.image+b.image;
return temp;
}
public complex sub complex(complex a;complex b){
Complex temp=nex complex();
temp.real=a.real-b.real;
temp.image=a.image-b.image;
return temp;
}
void prinComplex()
{
System.out.prinln("this.real"+"this.image")
}
}
}
public class ShiYan3_4{
public static void main(String args[]){
Complex x = new Complex(4.0,2.1);
Complex y = new Complex(2.5,5.0);
Complex t1 = new Complex( );
Complex t2 = new Complex( );
t1 = x.add(y);
t2 = x.sub(y);
t1.print( );
t2.print( );
}
}
这个作业是我参考了网上的复数类定义来做的 所以一个也是思路不是很完善 另一个是不知道哪里错
请教各位大家帮忙看看 麻烦各位了 谢谢了