Calculate Squre Program Using Java

  1. // squre program  
  2. class squ  
  3.  {  
  4.     void calc(int x)  
  5.     {  
  6.        int y;  
  7.        y = x*x;  
  8.        System.out.println("Square : "+y);  
  9.     }  
  10.   
  11.    public static void main(String arg[])  
  12.     {  
  13.       squ a = new squ();  
  14.       a.calc(5);  
  15.     }  
  16.   }