Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream.h>
- #include<conio.h>
- void main()
- {
- int i,j,k;
- clrscr();
- for(k=1;k<=32;k++)
- {
- for(i=k;i<=30;i++)
- cout<<"*";
- for(j=2;j<=k;j++)
- cout<<" ";
- for(j=2;j<=k;j++)
- cout<<" ";
- for(i=k;i<=30;i++)
- cout<<"*";
- cout<<endl;
- }
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment