Sunday, 24 March 2013

C++ Half Diamond Program Using NEsted Loops



#include <iostream.h>

int main()
{
    int row=1 , col ;

    while(row <= 6)
    {
        col = row;
        while (col >= 1)
        {
            cout << "*";
            col--;
        }
        cout << endl;
        row++;
    }
    row=6;
    while (row >= 1)
    {
        col = row;
        while (col >=1)
        {
            cout << "*";
            col--;
        }
        cout << endl;
        row--;
    }
    return 0;
}