👤

Problema 280 de pe pbinfo!
Dau coroana!


Răspuns :

Răspuns:

#include<iostream>

using namespace std;

int main()

{

   int p=0,c,x,inv=0,aux;

   do{

       cin>>x;

       aux=x;

       if(x!=0)

       {

           inv=0;

           while(aux)

           {

               inv=inv*10+aux%10;

               aux/=10;

           }

           if(inv==x)

               if(p==0)

           {

               p=x;c=1;

           }

           else

               if(x>p)

           {

               p=x;c=1;

           }

           else

           if(p==x)

               c++;

       }

   }while(x!=0);

   if(p==0)

       cout<<"NU EXISTA";

   else

       cout<<p<<" "<<c;

   return 0;

}

Explicație: