You are viewing a single comment's thread. Return to all comments →
var sb=new StringBuilder();
for(var i=1;i<=n;i++) { sb.Append(new String(' ',n-i)); sb.Append(new String('#',i)+"\n"); } Console.Write(sb.ToString());
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 →
var sb=new StringBuilder();