📄 legal-7
字号:
class Program{ void test_while() { int i; i = 0; while(true) { while(false) { callout("printf","should never be here\n"); } i = i + 1; callout("printf","%d",i); if (i > 5) { return; } } } void main() { test_while(); callout("printf","\n"); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -