📄 superstatement.java
字号:
import java.util.*;public class SuperStatement { protected static int labels = 0; protected static int toLabel = 0; protected static Hashtable state = Program.state; protected String labelling() { String label = "\0"; switch (toLabel) { case 0: label = " "; break; case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: label = "L"+toLabel+": "; break; default: label = "L"+toLabel+":"; break; } toLabel = 0; return label; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -