You are viewing a single comment's thread. Return to all comments →
c++ solution:
void staircase(int n){ for ( int i = 1;i<=n;i++){ cout<< string(n-i, ' '); cout<< 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 →
c++ solution: