Computer Science, asked by sc9665307, 5 hours ago

write a java program to accept the radius qnd find the area and circumference of the given circle
please answer fast​

Answers

Answered by infocus34gmailcom
1

Answer:

hope it helps

Explanation:

1)package com.tcc.java.programs;

2)import java.util.*;

3(public class CircleArea {

4(public static void main(String[] args) { double 5(radius, area, circumference;

6(Scanner in = new Scanner(System.in); ...

7)radius = in.nextDouble(); ...

8)area = Math.PI * radius * radius; ...

9System.out.println( "Area of Circle : " + area);

mark me as brainlest

Similar questions