Two double data fields named width and height
that specify the width and height of the rectangle. The default values are 1 for both width and
height.

  • A string data field named color that specifies
    the color of a rectangle. Hypothetically, assume that all rectangles have the
    same color. The default color is white.

  • A no-arg constructor that creates a default
    rectangle.

  • A constructor that creates a rectangle with the
    specified width and height.

  • The accessor
    and mutator methods for all three data fields.

  • A method named getArea() that returns the area
    of this rectangle.

  • A method named getPerimeter() that returns the
    perimeter.

Draw the UML diagram for the class. Implement the class.
Write a test program that creates two Rectangle objects. Assign width 4 and height 40 to the first
object and width 3.5 and height 35.9 to the second object. Assign color red to all Rectangle
objects. Display the properties of both
objects and find their areas and perimeters.

This looks like homework as few of my work projects demanded the UML diagram.

Let's discuss what's stopping you from doing this homework.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.