You are viewing a single comment's thread. Return to all comments →
In C++ we can use string constructor and solve this
void staircase(int n) { for( int i = 1; i<=n; i++) { cout<<string(n-i, ' ')<<string(i, '#')<<endl; } }
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 →
In C++ we can use string constructor and solve this