?? testforerror.java
字號:
/**
* Description:
* <br/>Copyright (C), 2005-2008, Yeeku.H.Lee
* <br/>This program is protected by copyright laws.
* <br/>Program Name:
* <br/>Date:
* @author Yeeku.H.Lee kongyeeku@163.com
* @version 1.0
*/
public class TestForError
{
public static void main(String[] args)
{
//循環(huán)的初始化條件,循環(huán)條件,循環(huán)迭代語句都在下面一行
for (int count = 0 ; count < 10 ; count++)
{
System.out.println(count);
//再次修改了循環(huán)變量
count *= 0.1;
}
System.out.println("循環(huán)結(jié)束!");
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -