โ Back to Functions/Methods
Question 118
Function: Is Palindrome Number
Function: Is Palindrome Number
Complete the function isPalindrome so it returns 1 if a positive integer reads the same forwards and backwards, and 0 otherwise. The main function prints 'Palindrome' or 'Not a palindrome'. Example: 1221 is a palindrome; 1234 is not.
Expected Output:
Palindrome
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.