?? num.java
字號:
class ZS{
void compu(int num){
r:
for(int a=num;a>2;a--){
for(int b=a-1;b>=2;b--){
if(a%b==0){
continue r;
}
}
System.out.println(a);
}
}
}
class print{
public static void main(String args[]){
ZS test=new ZS();
test.compu(50);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -