Josif_tepe

Untitled

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