Răspuns:
#include <iostream>
using namespace std;
int main() {
int n, p10, ans;
cin >> n;
p10 = 1;
while ( p10 <= n )
p10 *= 10;
p10 /= 10;
while ( p10 > 1 ) {
if ( (n / p10 % 10) % 2 == 0 )
ans = ans * 10 + ( n / p10 % 10 );
p10 /= 10;
}
cout << ans;
}
Explicație:
L am scris akm de pe tel
nu l-am testat