Guest User

Untitled

a guest
Oct 7th, 2015
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1.     int iStevec1, iStevec2;
  2.    
  3.     for(iStevec1 = 1; iStevec1 <= 5; iStevec1++)
  4.     {
  5.                 for(iStevec2 = 1; iStevec2 <= iStevec1; iStevec2++)
  6.                 {
  7.                             printf("*");
  8.                             }
  9.                 printf("\n");          
  10.                 }
  11. ___________________________________________________________
  12. *
  13. **
  14. ***
  15. ****
  16. *****
Advertisement
Add Comment
Please, Sign In to add comment