📄 city.java
字号:
public class City {
String name;
double x;
double y;
public City(String name,double x,double y){
this.name=name;
this.x=x;
this.y=y;
}
public City(City c){
this.name=c.name;
this.x=c.x;
this.y=c.y;
}
public void Print(){
System.out.println(name+" "+x+" "+y);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -