site.java

来自「模拟火星探测器火星漫步的小程序(JAVA编写)」· Java 代码 · 共 27 行

JAVA
27
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package marstraveler;/** * * @author Administrator */public class Site {   public int x;   public int y;   public Site(int x,int y)   {       this.x=x;       this.y=y;   }   public void set(int x,int y)   {       this.x=x;       this.y=y;          }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?