You are viewing a single comment's thread. Return to all comments →
how about this?
String hash = "#"; for(int i = 1; i <= n; i++){ System.out.printf("%"+n+"."+i+"s%n", hash); hash+="#"; }
Staircase
You are viewing a single comment's thread. Return to all comments →
how about this?
String hash = "#"; for(int i = 1; i <= n; i++){ System.out.printf("%"+n+"."+i+"s%n", hash); hash+="#"; }