See More

/* */ package ch02; /* */ /* */ /* */ /* */ /* */ public class ComputeArea /* */ { /* */ public static void main(String[] args) { /* 9 */ double radius = 20.0D; /* */ /* */ /* 12 */ double area = radius * radius * 3.14159D; /* */ /* */ /* 15 */ System.out.println("The area for the circle of radius " + radius + " is " + area); /* */ } /* */ } /* Location: /Volumes/TXS.128G/hope useful/practice/2020.jar!/ch02/ComputeArea.class * Java compiler version: 8 (52.0) * JD-Core Version: 1.1.3 */