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

java 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 of
sphere).
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
Task# 3
Create a class called Car that includes three instance variables:
A model (type String)
A year (type String)
A price (double).
Provide a constructor that initializes the three instance variables.
Provide a set and a get method for each instance variable. If the price is not positive, do
not set its value.
Write a test application named CarApplication that demonstrates class Cars
capabilities. Create two Car objects and display each objects price. Then apply a 5%
discount on the price of the first car and a 7% discount on the price of the second.
Display each Cars price again.

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!