Advertisement
niamulhasan

Untitled

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