(Circle.java) a. Implement a class called Circle for representing a circle. The circle has two data members, a Point object representing the center of the circle and a float value representing the radius. a. Include appropriate constructors for your Circle class. p. Encapsulate it. : Also include methods for finding the area and circumference of the circle. area = pi * radius * radius circumference = 2 * pi * radius. (You may use the static constant pi in the Math class)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter12: Points, Classes, Virtual Functions And Abstract Classes
Section: Chapter Questions
Problem 34SA
icon
Related questions
Question
100%

JAVA PROGRAM
SEE ATTACHED PHOTO FOR THE PROBLEM

 

1. Problem (Circle.java)
a. Implement a class called Circle for representing a circle. The circle has two data members, a Point
object representing the center of the circle and a float value representing the radius.
a. Include appropriate constructors for your Circle class.
b. Encapsulate it.
c. Also include methods for finding the area and circumference of the circle.
area = pi * radius * radius
circumference = 2 * pi * radius.
(You may use the static constant pi in the Math class)
d. Override the toString() and equals().
e. Write a simple main method that creates Circle objects and tests each of the methods that you
have defined.
Transcribed Image Text:1. Problem (Circle.java) a. Implement a class called Circle for representing a circle. The circle has two data members, a Point object representing the center of the circle and a float value representing the radius. a. Include appropriate constructors for your Circle class. b. Encapsulate it. c. Also include methods for finding the area and circumference of the circle. area = pi * radius * radius circumference = 2 * pi * radius. (You may use the static constant pi in the Math class) d. Override the toString() and equals(). e. Write a simple main method that creates Circle objects and tests each of the methods that you have defined.
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Variables
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning