Josif_tepe

Untitled

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