11 lines
140 B
Java
11 lines
140 B
Java
public class Point {
|
|
public int x;
|
|
public int y;
|
|
|
|
public Point(int x, int y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
}
|
|
|