Skip to content

Instantly share code, notes, and snippets.

import java.util.Scanner;
public class Rectangle {
public static class Point {
public float x, y;
public Point(float x, float y) {
this.x = x;