You are viewing a single comment's thread. Return to all comments →
public static void staircase(int n) {
for(int i=0;i<n;i++){ for(int j=n-1;j>=0;j--){ System.out.print(i<j?" ":"#"); } 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) {
}