WAP to calculate the area of circle by input method
Answers
Answered by
11
Answer:
The program output is also shown below.
- public class Area.
- int r;
- double pi = 3.14, area;
- Scanner s = new Scanner(System.
- System. out. print("Enter radius of circle:");
- r = s. nextInt();
- area = pi * r * r;
- System. out. println("Area of circle:"+area);
Similar questions