Código:
#include <iostream>
using namespace std;
int main ()
{
int a,b,s,c = 0,total = 0;
cout << "Por favor ingrese el primer numero: ";
cin >> a;
cout << "Por favor ingrese el segundo numero: ";
cin >> b;
while ( a < b )
{
a += 1;
s = a;
while ( s > 0)
{
c = c * 10 + s%10;
s /= 10;
}
if ( c == a)
{
++total;
cout << c ;
}
}
cout << "\nEl numero de terminos capicua es " << total << endl;
return 0;
}