Skip to content
Snippets Groups Projects
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;
	}

	
}