?? ex030102.java
字號:
public class Ex030102{
public static void main(String[] args){
int i = 3;
int j = 0;
double k = 3.2;
if ( i < k )
if ( i == j )
System.out.println(i);
else
System.out.println(j);
else
System.out.println(k);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -