Răspuns :

Răspuns:

#include <iostream>

using namespace std;

int main()

{

   int n;

   

   cout<< "Introdu numarul: ";

   

   cin >> n;

   

   int max = -1;

   

   while(n>0)

   {

       int uc = n%10;

       if(uc%2==0 && max < uc)

           max = uc;

       n /=10;

   }

   

   cout<<max;

   return 0;

}

Explicație: