Question: Create a java program using arrays to read user input that determines how many circles are being read into the system, and determines the area
Create a java program using arrays to read user input that determines how many circles are being read into the system, and determines the area of each circle based on radius size
This is the class used to summarize the area of the circle:
class TotalArea
public static Circle[] createCircleArray(int size)
private static double sum(Circle[] cArray)
public static void printCircleArray(Circle[] cArray)
Sample Input
2, 5,6
Sample Output
Calculating area of 2 circles:
Area of Circle 1= 4pi(5)^2
Area of Circle 2 = 4pi(6)^2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
