java 練習5.複數加減法

複數運算 定義一個附屬類,內部有兩個實例變量,分別代表實部虛部,編程實現複數加法與減法 代碼 public class ComplexNumber { private int realPart; private int imagPart; public ComplexNumber() { this.realPart=0; this.imagPart=0; } publ
相關文章
相關標籤/搜索