Computer Science, asked by Shambhavi82S, 1 month ago

WAP to enter a number and check if it's a palindrome number or not
(using while loop)​

Answers

Answered by profdambaldor
1

Answer:

n=int(input("Enter number:"))

temp=n

rev=0

while(n>0):

   dig=n%10

   rev=rev*10+dig

   n=n//10

if(temp==rev):

   print("The number is a palindrome!")

else:

   print("The number isn't a palindrome!")

Explanation:

Similar questions