Advertisement
niamulhasan

Untitled

Feb 17th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package test;
  2. /*
  3.  
  4.     *
  5.    ***
  6.   *****
  7.  *******
  8. *********
  9.  
  10. */
  11. class Test{
  12.    
  13.     public static void main(String[] args){
  14.         for(int i=1; i<=5; i++) {
  15.             for(int k=4; k>=i; k--) {
  16.                 System.out.print(" ");
  17.             }
  18.             for(int j=1; j<=2*i-1;j++) {
  19.                 System.out.print("*");
  20.             }
  21.             System.out.println("");
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement