Java - Encapsulation A rectangle can be formed given two points, the top left point and the bottom right point. Assuming that the top left corner of the console is point (0, 0), the bottom right corner of the console is point (MAX, MAX) and given two points (all “x” and “y” coordinates are positive), you should be able to draw the rectangle in the correct location, determine if it is a square or a rectangle, and compute for its area, perimeter and center point. To be able to do this, you should create a class Point (that has an x-coordinate and a y-coordinate). Also, create another class called Rectangle. The Rectangle should have 2 points, the top left and the bottom right. You should also implement the following methods for the Rectangle: display() - draws the rectangle on the console based on the sample area() - computes and returns the area of a given rectangle perimeter() - computes and returns the perimeter of a given rectangle centerPoint() - computes and returns the center point of a given rectangle isSquare() - checks whether a given rectangle is a square or not.     Inputs 1. X   2. Y   Sample Output Enter x: 5 Enter y: 8 # # # # # # #             # #             # #             # #             # #             # #             # #             # # # # # # # RECTANGLE AREA: 40 PERIMETER: 26 CENTER POINT: (2.50,4.00)

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter14: Introduction To Swing Components
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

Java - Encapsulation

A rectangle can be formed given two points, the top left point and the bottom right point. Assuming that the top left corner of the console is point (0, 0), the bottom right corner of the console is point (MAX, MAX) and given two points (all “x” and “y” coordinates are positive), you should be able to draw the rectangle in the correct location, determine if it is a square or a rectangle, and compute for its area, perimeter and center point. To be able to do this, you should create a class Point (that has an x-coordinate and a y-coordinate). Also, create another class called Rectangle. The Rectangle should have 2 points, the top left and the bottom right. You should also implement the following methods for the Rectangle:

display() - draws the rectangle on the console based on the sample
area() - computes and returns the area of a given rectangle
perimeter() - computes and returns the perimeter of a given rectangle
centerPoint() - computes and returns the center point of a given rectangle
isSquare() - checks whether a given rectangle is a square or not.

 

 


Inputs

1. X

 

2. Y

 

Sample Output

Enter x: 5
Enter y: 8
# # # # # #
#             #
#             #
#             #
#             #
#             #
#             #
#             #
# # # # # #

RECTANGLE
AREA: 40
PERIMETER: 26
CENTER POINT: (2.50,4.00)

Test Cases
Enter x: 5
Enter y: 8
# # # # # #
#
#
#
#
#
#
#
# # # # # #
# #
Executions
RECTANGLE
AREA: 40
PERIMETER: 26
CENTER POINT: (2.50,4.00)
Transcribed Image Text:Test Cases Enter x: 5 Enter y: 8 # # # # # # # # # # # # # # # # # # # # # Executions RECTANGLE AREA: 40 PERIMETER: 26 CENTER POINT: (2.50,4.00)
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT