How to make a shape using C++ programming!

 #include <iostream>


using namespace std;


int main()

{

    cout << "   /|" << endl;

    cout << "  / |" << endl;

    cout << " /  |" << endl;

    cout << "/___|" << endl;


    return 0;

}


Comments