Computer Science, asked by Arman1225, 10 months ago

write a program to find the area of a circle​

Answers

Answered by anshikajais2001
3

Answer:

class area

{

public static void main(double r)

{

double a=3.14*Math.pow(r,2);

System.out.println("The Area Of The Circle Is : "+a);

}

}

Explanation:

Similar questions