mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
227dcf0525
Added the algorithm to convert number to string and check if it's a palindrome.
21 lines
217 B
C++
21 lines
217 B
C++
#include<bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int num;
|
|
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;
|
|
}
|