Question: Write a object called Circle. Declare the following integer variables for the object Circle, radius, diameter, and pi is declared as double. Create the following

Write a object called Circle. Declare the following integer variables for the object Circle, radius, diameter,

and pi is declared as double. Create the following for the Circle object:

Implicit constructor (default constructor)

Void method Calculate (double pi, int radius) to calculate the area of the Circle object. The method must include a system.out statement that

displays the area value. Use the following formula to calculate area of the circle:

Area = pi * (r * r)

The program includes a main class called Shape with a reference c1 to the Circle object. Pass the following values to the object Circle:

radius = 4

diameter = 8

pi = 3.14

Include output statements to view the values passed to the object Circle.

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!