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 = 0; j < n; j++) { if (i+j >= n-1) { System.out.print("#"); } else { 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 →