Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int broj;
- while(scanf("%d", &broj)) {
- int posledna_cifra = broj % 10;
- int prva_cifra;
- for(int i = broj; i > 0; i /= 10) {
- int cifra = i % 10;
- prva_cifra = cifra;
- }
- int zbir = prva_cifra + posledna_cifra;
- if(zbir >= 10) {
- int x = zbir % 10;
- int y = zbir / 10;
- if((x + y) % 2 == 1) {
- printf("%d ", broj);
- }
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement