/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
class Solution {
public:
bool isPalindrome(int x) {
string str = to_string(x);
for(int i = 0; i < str.length() / 2; i++){
if(str[i] != str[str.length() - i - 1]) return false;
}
return true;
}
};
int main()
{
Solution a;
int x;
cout<< "enter a number";
cin>>x;
cout<<a.isPalindrome(x);
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter