Umi Devi
Weblog From a Girl for All People and Telling About All Infomation
Jan 27, 2007
C++ Program to print pyramid of stars
C++ program to print pyramid of stars
.
*
* *
* * *
* * * *
* * * * *
main()
{
clrscr();
int i,k;
for (i=1;i<=5;i++)
{
for (k=1;k<=i;k++)
{
cout<<"*";
}
cout<<endl;
}
getch();
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment