You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.out.print("enter radius of a circle as an integer: ");
int radius = input.nextInt();
System.out.printf("diameter of the circle is %d%ncircumference of the circle is %f%nand Area of the circle is %f%n", (2 * radius), (2 * 3.14159 * radius), (3.14159 * radius * radius));