Advertisement
Lisaveta777

code fragment

Dec 20th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. for(i=0;i<N;i++)//one
  2.     {
  3.         for(j=0;j<N;j++)
  4.         {
  5.             if(i+2>N-j)
  6.                 printf("%d",N-j);
  7.             else
  8.                 printf(" ");
  9.          }
  10.         printf("\n");
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement