Tuesday, March 19, 2013

Pyramid 1

#include<iostream>

using namespace std;

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



Output:


*
**
***
****
*****

0 comments:

Post a Comment