Advertisement
Nihan

Untitled

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