Răspuns:
Raspuns
Explicație:
#include <iostream>
using namespace std;
int main()
{
int copn; /// copie n
int n; /// citire variabila
int cnt=0; /// contor
int putere=1; /// putere
cin>>n;
copn=n;
while(copn!=0)
{
copn/=10;
cnt++;
}
if(cnt%2==1)
{
cnt/=2;
while(cnt!=0)
{
putere*=10;
cnt--;
}
cout<<n/putere%10;
}
else
{
cnt/=2;
while(cnt!=0)
{
putere*=10;
cnt--;
}
putere/=10;
cout<<n/putere%100;
}
return 0;
}