Question
Need book solution for the following- Scenario: Write a console program that uses a Circle class to calculate a circles area, diameter and circumference given
Need book solution for the following-
Scenario:
Write a console program that uses a Circle class to calculate a circles area, diameter and circumference given the circles radius.
Fields (Property):
The circles Radius: a double, read and write
Constant:
PI: Constant value of 3.14159
Methods:
-Constructor: Accepts the radious of the circle class as an argument.
-Constructor: A no argument constructor that sets the radius to 0.
-GerArea: Returns the area of the circle, which is calculated as: Area = PI * radius * radius
-GetDiameter: Returns the circumference of the circle, which is calculated as: Circumference = 2 * PI * radius
Write a program that demonstrates the Circle class by asking the user for the circles radius, creating a circle object, and then reporting the circles area, diameter and circumference.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started