Advertisement
TawratNibir

Untitled

Dec 2nd, 2024
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.78 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5.     int low = 4;
  6.     int high = low;
  7.     int p = 1;
  8.     for (int i = 1; i <= 4; i++)
  9.     {
  10.         for (int j = 1; j <= 7; j++)
  11.         {
  12.             if (j >= low && j <= high)
  13.             {
  14.                 if (i % 2 == 0 && j % 2 == 0)
  15.                 {
  16.                     printf(" ");
  17.                 }
  18.                 else if (i % 2 == 1 && j % 2 == 1)
  19.                 {
  20.                     printf(" ");
  21.                 }
  22.                 else
  23.                 {
  24.                     printf("%d", p);
  25.                     p++;
  26.                 }
  27.             }
  28.             else
  29.             {
  30.                 printf(" ");
  31.             }
  32.         }
  33.         printf("\n");
  34.         low -= 2;
  35.         high += 2;
  36.     }
  37.     return 0;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement