Added and algorithm to check if a number is palindrome

Added the algorithm to convert number to string and check if it's a palindrome.
This commit is contained in:
Gopikrishnan Rajeev 2018-10-31 00:05:32 +05:30 committed by GitHub
parent 16e1bcdb52
commit 227dcf0525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
Palindromeofnumber.cpp Normal file
View File

@ -0,0 +1,20 @@
#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;
}