Advertisement
niamulhasan

Untitled

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