Răspuns:
#include <iostream>
using namespace std;
int main()
{
int n, x;
bool ok = false;
cin >> n;
if (n == 0)
{
cout << 0;
}
else
{
while (n)
{
x = n % 10;
if (x % 2 == 0)
{
ok = true;
break;
}
n /= 10;
}
if (ok)
{
cout << x;
}
else
{
cout << -1;
}
}
}
Explicație: