?? compute1.java
字號:
//Compute1.java
//This programe is about the Computing
public class Compute1{
public static void main(String[] args){
int y = 32,z = 3, x1, x2;
x1 = y + z;
x2 = y / z;
float f1 = 20.32f, f2 = 5.3f;
System.out.println("y+z = "+x1);
System.out.println("y/z= "+x2);
System.out.println("y%z = "+(y%z));
System.out.println("f1-f2 = "+(f1-f2));
System.out.println("f1%f2 = "+(f1%f2));
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -