Calculate Serious Program Using Java

  1. // serious program  
  2.   
  3. import java.io.*;  
  4. class ssv123  
  5. {  
  6. public static void main(String args[]) throws IOException  
  7. {  
  8. int i,j,b,n;  
  9. String s;  
  10.   
  11. DataInputStream a = new DataInputStream(System.in);  
  12. System.out.println("enter the number:");  
  13.   
  14. s = a.readLine();  
  15. n=Integer.parseInt(s);  
  16.   
  17. for(i=1;i<=n;i++)  
  18. {  
  19. for(j=1;j<=i;j++)  
  20. {  
  21. System.out.println(j + " ");  
  22.  }  
  23. }  
  24. for(i=n;i>=1;i--)  
  25. {  
  26. for(j=i;j>=1;j--)  
  27. {  
  28. System.out.println(i + " ");  
  29.  }  
  30. }  
  31. for(i=1;i<=n;i++)  
  32. {  
  33. for(j=1;j<=i;j++)  
  34. {  
  35. System.out.println(i + " ");  
  36.      }  
  37.     }  
  38.    }