📄 loopfor.java
字号:
/** Compile this program and dump the compiled bytecode * with "javap -c" or equivalent; you will be enlightened * as to the true nature of while loops compared to for loops. */class Loops { public static void main(String[] args) { for (int i=0; i<10; i++) { System.out.println(i); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -