-
Jan Kožusznik authored989fe83a
Point.java 163 B
package koz01.java2.lab04;
public class Point {
private double x;
private double y;
public Point(double x, double y) {
this.x = x;
this.y = y;
}
}
package koz01.java2.lab04;
public class Point {
private double x;
private double y;
public Point(double x, double y) {
this.x = x;
this.y = y;
}
}