You are viewing a single comment's thread. Return to all comments →
**//C# **
public static void staircase(int n) { string symbol=""; for(int i=0;i<n;i++){ string space = ""; for(int j=0;j<n-(i+1);j++){ space=space+" "; } symbol=symbol+"#"; Console.WriteLine(space+symbol); } }
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 →
**//C# **