Given the following Java program:
/* Program CirArea.Java **
** **
** This program asks the user to input a decimal **
** number for the radius of a circle. The program **
** then calculates the area of the circle. */
import java.io.*;
public class CirArea {
public static void main(String[] arg) throws IOException {
float area ;
int r ;
final float pi=3.14f ;
System.out.println("Please enter radius in whole number: \n") ;
r = Integer.parseInt((new BufferedReader(new InputStreamReader(System.in))).readLine());
area = pi * r * r ;
System.out.println("The radius you provided was " + r + " feet and the area is about " + area + "sq feet");
}
}