Calculate Perfect Square using Java


  1. // perfect square   
  2.   
  3. import java.io.*;  
  4.   
  5. class ssvps  
  6.  {  
  7.    public static void main(String arg[]) throws IOException  
  8.    {  
  9.     String s1;  
  10.   
  11.     int m,n;  
  12.   
  13.     int p;  
  14.   
  15.     DataInputStream dr = new DataInputStream(System.in);  
  16.      
  17.     System.out.print("\nEnter the Number : ");  
  18.   
  19.     s1 = dr.readLine();  
  20.   
  21.     n = Integer.parseInt(s1);  
  22.   
  23.       p=(int)sqrt(n);  
  24.   
  25.       m = p;  
  26.   
  27.       if(p == m)  
  28.   
  29.        System.out.println("\nit is Perfect Square"+n);  
  30.   
  31.     else  
  32.   
  33.        System.out.println("\nit is Not Perfect Square"+n);  
  34.    
  35.   }  
  36.  }  
  37.   
  38.