📄 chapter5n1.java
字号:
/** * * demonstration of the "for" statement * * Written by: Roger Garside * * First Written: 12/June/96 * Last Rewritten: 2/Oct/96 * */public class Chapter5n1 { /** * * main * */ public static void main(String[] args) { System.out.println("Before the beginning of the loop") ; for (int i = 0 ; i < 10 ; i++) System.out.println(i) ; System.out.println("After the end of the loop") ; } // end of mathod main } // end of class Chapter5n1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -