coderz.py

Keep Coding Keep Cheering!

Program to check Palindrome string

A string is said to be a palindrome if the reverse of the string is the same as the string. For instance, Program Code: Output: Note: also read about Find the Reverse of a Number Follow Me Please follow me to read my latest post on programming and technology if you like my post. https://www.instagram.com/coderz.py/ https://www.facebook.com/coderz.py […]

December 3, 2022 | C++ | No comments

Check for palindrome number

A palindrome number is a number that remains the same when digits are reversed. For example, the number 125521 is a palindrome number, but 1451 is not. Program Logic: First, Declare a variable reverseNum and initialize it with 0. Now, make a while loop till the original number is greater than zero. In every loop, get the last digit […]

November 12, 2022 | C++ | No comments

Advertisement