โ Back to Functions
Question 414
Palindrome Number Check
Palindrome Number Check
Write a functionbool isPalindrome(int n)that returnstrueif the digits ofnread the same forwards and backwards. Read one non-negative integer from standard input and printtrueorfalseusingboolalpha. For input121the output is: true
Expected Output:
true
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.