package abhilash_Asignments; //WAP on area of circle using math.random() public class Assignment30 { public static void main(String[] args) { //math Random method double radius = Math.random() * 10; double area = Math.PI * radius * radius; System.out.println("Area circle math method " + area); } }