Advertisement
Josif_tepe

Untitled

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