?? complex.java
字號:
public class Complex { //:)
double r, i;
public void set(Complex k) {
this.r = k.Re();
this.i = k.Im();
}
public void set(double r, double i) {
this.r = r;
this.i = i;
}
public Complex get() {
return this;
}
public double Re() {
return this.r;
}
public double Im() {
return this.i;
}
Complex(double r, double i) {
this.r = r;
this.i = i;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -