Question: Write a Java program which illustrates how to: Create a class Circle, which has: 1 . One attribute ( radius ) . 2 . Default

Write a Java program which illustrates how to: Create a class Circle, which has:1. One attribute (radius).2. Default constructor. 3. Overloaded constructor 4. Function to set the radius. 5. Three accessor functions to get the (radius, area of circle, volume ofsphere).6. Function to display (radius, area, volume). In the main function:1. Ask the user to enter value for the radius. 2. Make a call to display the attributes.Given information: PI =3.14159 Area = PI * Radius2;Volume =4.0/3* PI * Radius3
Use toString

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!