f0a232220814001c1d2fc692924e35ff
来自「java编写的一个坦克大战游戏」· 代码 · 共 25 行
TXT
25 行
public class Tank {
private int x=30;
private int y=30;
public Tank(int x, int y) {
this.x = x;
this.y = y;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?