Square Root calculation for given numbers using Java


  1. // Sqrt  program  
  2.   
  3. class ssvsqrt  
  4. {  
  5.  public static void main(String args[])  
  6.  {  
  7.      System.out.print("\n\n\n        | ");  
  8.         for(double j=0.0;j<=0.9;j+=0.1)   
  9.                            if ((j > 0.7) && (j < 0.9)) { j = 0.8;System.out.print(j+"    "); }  
  10.                else  
  11.         System.out.print(String.valueOf(j).substring(0,3)+"    ");   
  12.  System.out.print("\n   -----|---------------------------------------------------------------------");  
  13.  System.out.print("\n          \n        | \n    ");  
  14.       for(double i=0.0;i<=9.0;i++)  
  15.      {   System.out.print(i +  " | ");  
  16.         for(double j=0.0;j<=0.9;j+=0.1)  
  17.        {  
  18.             if ( (Math.sqrt(i+j) == 0.0) ||  (Math.sqrt(i+j) == 1.0)||  (Math.sqrt(i+j) == 2.0)||  (Math.sqrt(i+j) == 3.0))   
  19.                 System.out.print(Math.sqrt(i+j)+ "    ");  
  20.             else  
  21.                 System.out.print(String.valueOf( Math.sqrt(i+j)).substring(0,4) + "   ");  
  22.        }  
  23.        System.out.print("\n    " );  
  24.                       }  
  25.   }  
  26.  }