TheAlgorithms-C-Plus-Plus/others/Palindromeofnumber.cpp
Christian Clauss ac1ba3a613
rename Others -> others (#648)
* rename Others -> temp

* rename Others -> others
2019-11-28 13:29:54 +01:00

24 lines
281 B
C++

#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int num;
cout << "Enter number = ";
cin >> num;
string s1 = to_string(num);
string s2 = s1;
reverse(s1.begin(), s1.end());
if (s1 == s2)
cout << "true";
else
cout << "false";
return 0;
}