Calculate Average Of 'N' Numbers Using Java Program

  1.         /*  AVERAGE CALCULATION OF 'N' NUMBERS  */  
  2.               
  3. import java.io.*;  
  4. import java.text.*;  
  5.   
  6. class ssva17  
  7. {  
  8.     public static void main(String arg[]) throws IOException  
  9.     {  
  10.         int i,n;  
  11.         double a[]=new double[20];  
  12.         double tot=0,avg;  
  13.         BufferedReader obj=new BufferedReader(new InputStreamReader(System.in));  
  14.         System.out.println(" AVERAGE CALCULATION ");  
  15.         System.out.println(" ------- ----------- ");  
  16.         System.out.print("\nENTER HOW MANY NUMBERS : ");  
  17.         n=Integer.parseInt(obj.readLine());  
  18.         NumberFormat nf=NumberFormat.getInstance();  
  19.         nf.setMaximumFractionDigits(2);  
  20.         nf.setMinimumFractionDigits(2);  
  21.         System.out.println("\nENTER THE NUMBERS\n");  
  22.         for(i=1;i<=n;i++)  
  23.         {  
  24.             a[i]=Double.parseDouble(obj.readLine());  
  25.             tot+=a[i];  
  26.         }  
  27.         System.out.println("\nTOTAL IS : "+nf.format(tot));  
  28.         avg=tot/n;  
  29.         System.out.println("\nTHE AVERAGE IS : "+nf.format(avg));  
  30.         System.out.println("\n");  
  31.     }