Advertisement
makhon007

star by loop 1

Nov 25th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     int i,j;
  7.     for( i=1; i<=3; i++)
  8.     {
  9.         for(j=1; j<=5; j++)
  10.         {
  11.             printf("*");
  12.         }
  13.         printf("\n");
  14.     }
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement