noshin98

uva488

Jun 27th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.47 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. int main()
  4. {
  5.     int rows,i,j,waves,a;
  6.     scanf("%d%d",&rows,&waves);
  7.     for(a=1;a<=waves ;a++)
  8.     {
  9.  
  10.  
  11.     for(i=1;i<=rows;i++)
  12.     {
  13.         for(j=1;j<=i;j++)
  14.         {
  15.         printf("%d ",i);
  16.         }
  17.         printf("\n");
  18.  
  19.     }
  20.  
  21.     for(i=rows-1;i>=1;i--)
  22.     {
  23.         for(j=1;j<=i;j++)
  24.         {
  25.         printf("%d ",i);
  26.         }
  27.         printf("\n");
  28.  
  29.     }
  30.     printf("\n");
  31.     }
  32. return 0;
  33. }
Add Comment
Please, Sign In to add comment