Sunday, 24 March 2013

C++ Rectangle Program


#include <iostream.h>

int main()
{
    int row=1 , col;
    while (row <= 5)
    {
        col=12;
        while (col >= 1)
        {
            cout << "* ";
            col--;
        }
        cout << endl;
        row++;
    }
    return 0;
}