题目:
【问题描述】
编写一个MyPoint类,该类拥有横、纵坐标两个属性,定义构造方法来初始化类的这些属性,定义方法输出MyPoint的信息。编写应用程序使用MyPoint。
【输入形式】
请输入横坐标(X):
请输入纵坐标(Y):
【输出形式】
你的位置的横坐标(X)为:
你的位置的纵坐标(Y)为:
【输入样例】
Please input the horizontal (X) : 30.5
Please input the ordinate (Y) : 75.6
【输出样例】
Your location of horizontal (X) is : 30.5
Your location of ordinate (Y) is : 75.6
代码:
import java.util.Scanner;
class MyPoint{
static