public class MyClass {
public static void main(String args[]) {
double radius = 5.7;
double CircleArea = Math.PI * radius * radius;
System.out.print("The area of the circle is: " + CircleArea);
}
}
/*
run:
The area of the circle is: 102.07034531513239
*/