?? methodmedo1.java
字號:
class MethodMedo1{
public static void main(String args[]){
int a=34,b=72,c=5,smallest;
smallest=min3(a,b,c);
System.out.println("The smallest is: "+smallest);
}
static int min3(int x,int y,int z){
int small;
small=Math.min(x,y);
small=Math.min(small,z);
return(small);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -