Sunday, 24 March 2013

C++ Empty Square Program

 

#include <iostream.h>

int main()
{
    int row=6 , col;
    while (row >= 1)
    {
        col=11;
        while (col >= 1)
        {
            if (row==6 || row==1)
            {
                cout << "=";
            }
            if (row>=2 && row<=5)
            {
                if (col==1 || col==11)
                {
                    cout << "*";
                }
                else
                {
                    cout <<" ";
                }
            }
            col--;
        }
        row--;
        cout << endl;
    }
    return 0;
}