You are viewing a single comment's thread. Return to all comments →
public static void staircase(int n) { // Write your code here for(int i=0;i(n-2)) 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 →
public static void staircase(int n) { // Write your code here for(int i=0;i(n-2)) System.out.print("#"); else System.out.print(" ");