?? 3-6.txt
字號(hào):
public class ConDemo
{
public static void main(String[ ]args)
{
int index=0;
while(index<=99)
{
index+=10;
/*當(dāng)index的值等于40時(shí),使循環(huán)回到while語句處,而不像正常處理那樣去執(zhí)行后面的輸出語句*/
if(index==40)
continue;
System.out.println("The index is "+index);
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -