You are viewing a single comment's thread. Return to all comments →
** public static void staircase(int n) {
for(int i=1;i<=n;i++) { for(int j=i;j<n;j++) { System.out.print(" "); } for(int j=i;j>=1;j--) { System.out.print("#"); } System.out.println(); } }**
Seems like cookies are disabled on this browser, please enable them to open this website
Staircase
You are viewing a single comment's thread. Return to all comments →
** public static void staircase(int n) {