Skip to content

This a program to check weather the given number is Palindrome or not . A Palindrome Number is a Number which is read the same from the right and the left like the Number 121

Notifications You must be signed in to change notification settings

marcelweikum/Palindrome-Number

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Palindrome-Number

Palindrome Number Checker (Java)

This is a simple Java console application that checks whether a given number is a palindrome. A number is considered a palindrome if it reads the same backward as forward (e.g., 121, 1331, 12321).

🧠 What the Program Does

  • Prompts the user to enter an integer.
  • Reverses the entered number using arithmetic operations.
  • Compares the reversed number to the original number.
  • Displays whether the entered number is a palindrome or not.

📋 Example :

  • If you enter a number 121 it will return you the number is Palindrome(Because if you read the number from rigft or left it is the same ) .
  • But when you write 112 it not the same from left or right the number changes to 211 .

About

This a program to check weather the given number is Palindrome or not . A Palindrome Number is a Number which is read the same from the right and the left like the Number 121

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 42.4%
  • CSS 32.1%
  • HTML 21.8%
  • Java 3.7%