WorkArea.java
package shapes;

public class WorkArea {
    public static void main(String[] args) {
        int deskHeight = 26;
        int deskwidth = 60;
        SRectangle Desk = new SRectangle(deskHeight, deskwidth);
        System.out.println("Area of Desk = " + Desk.area());

        int bookHeight = 7;
        int bookWeight = 10;
        SRectangle Book = new SRectangle(bookHeight, bookWeight);
        System.out.println("Area of two Book = " + 2 * Book.area());

        double Canradius = 1.25;
        SCircle Can = new SCircle(Canradius);
        System.out.println("Area of three Cans = " + 3 * Can.area());
        SSquare Coasters = Can.circumscribingSquare();
        System.out.println("Area of three Coasters = " + 3 * Coasters.area());

        double plateradius = 5.5;
        SCircle Plate = new SCircle(plateradius);
        System.out.println("Area of five Plate = " + 5 * Plate.area());

        double Objects = (2 * Book.area() + 3 * Coasters.area() + 5 * Plate.area());
        System.out.println(("Area occupied by objects on the Desk = " + Objects));

        double WorkArea = (Desk.area() - Objects);
        System.out.println("Area not occupied on the Desk = " + WorkArea);

    }
}