NTU-OOP-Tuts-2025-1/T3Q2-2/src/Point.java

13 lines
357 B
Java

public class Point {
protected int x, y;
public Point() { x = 0; y = 0; }
public Point(int x, int y) { this.x = x; this.y = y; }
public void setPoint(int x, int y) { this.x = x; this.y = y; }
public int getX() { return x; }
public int getY() { return y; }
public String toString() { return String.format("[%d,%d]", x, y); }
}