java编写一个复数类complex,具有实部、虚部成员变量,可以完成加、减、乘、除和获得实部和虚部的方法.docx

java编写一个复数类complex,具有实部、虚部成员变量,可以完成加、减、乘、除和获得实部和虚部的方法.docx

import javax.swing.JOptionPane; public class Complex { private double real ; private double image; public Complex。{ this . real = 0.0; this . image = 0.0; } public Complex( double real, double image) { this . real = real; this . image = image; } public void show1(){ System. out .print(实部+this . real +); System. out .println( 虚部+this . image); } public void show() { if (( this . real == 0.0) ( this . image == 0.0)) System. out .println( 0); else if ( this . real == 0.0) System. out .println( this . image + i); else if ( this . image == 0.0) System. out .println( this . real ); else System. out

文档评论(0)

1亿VIP精品文档

相关文档