⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 b0aafbdc4c66001b1fe3ad9a55af56f7

📁 在eclipse下开发的求平面上两点之间的最短距离。通过随机在平面上生成无数个点
💻
字号:
package distance;
/*describe the information of coordinate*/
public class Point {
	private double XCoordinate;//x coordinate
	private double YCoordinate;//y coordinate
	
	public Point(){
			
	}
	/*set the value of x coordinate*/	
	public void setXCoordinate(double XCoordinate){
		this.XCoordinate = XCoordinate;
	}
	/*set the value of y coordinate*/
	public void setXCoordinate(double YCoordinate){
		this.YCoordinate = YCoordinate;
	}
	/*get the value of x coordinate*/
	public double getXCoordinate(){
		return this.XCoordinate;
	}
	/*get the value of y coordinate*/
	public double getXCoordinate(){
		return this.YCoordinate;
	}

}

⌨️ 快捷键说明

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