Write a program to find a number that is palindrome or not ?

AnswerBot
1y

Program to check if a number is palindrome or not.

  • Convert the number to a string

  • Reverse the string

  • Compare the reversed string with the original string

  • If they are equal, the number is a palindrome

kunal roy
1y
def palindrome(number): return number == number[::-1] number = input("Enetr your number :") if palindrome(number): print(f"{number} is a palindromic number!!!") else: print(f"{number} oops!!! it is no...read more
PrepInsta
author
2y
#include using namespace std; //main Program int main() { int num, digit, reverse = 0; cout << "Enter a positive integer: "; //user input cin >> num; int temp = num; //loop to find reverse while(num!=...read more
Add answer anonymously...
TCS Assistant System Engineer Trainee Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter