write a program to find the area of a circle
Answers
Answered by
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