Advertisement
Josif_tepe

Untitled

Nov 15th, 2022
788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.54 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     int A, B;
  6.     scanf("%d%d", &A, &B);
  7.    
  8.     for(int i = A; i <= B; i++) {
  9.         int broj = i;
  10.         int blag_broj = 1;
  11.        
  12.         while(broj > 0) {
  13.             int posledna_cifra = broj % 10;
  14.             if(posledna_cifra % 2 != 0) {
  15.                 blag_broj = 0;
  16.             }
  17.             broj /= 10;
  18.         }
  19.        
  20.         if(blag_broj == 1) {
  21.             printf("%d ", i);
  22.             return 0;
  23.         }
  24.        
  25.     }
  26.    
  27.     return 0;
  28.  
  29. }
  30.  
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement