• + 0 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;
        }
    }