NBA - Boston Celtics

Saturday, 20 October 2012

PATTERN


#include<iostream.h>
void main()
{
for(int i=6;i>=1;i--)
{
for(int j=i;j<=6;j++)
{
cout<<"*";

}
cout<<"\n";
}
}

No comments:

Post a Comment