Showing posts with label star. Show all posts
Showing posts with label star. Show all posts

Tuesday, March 13, 2012

Program to print star pattern in C++

#include <iostream>
using namespace std;

int main()
{
    int i,j;
   
    for(i=1; i<=5; i++)
    {
        cout << "\n";
       
        for(j=1; j<=i; j++)
        {
            cout << "*";
        }
    }
   
    return 0;
}


OUTPUT: