Palindrome Number Example in Java

In this section, you will learn about the palindrome number and how to determine any number is palindrome or not.

Palindrome Number Example in Java

In this section, you will learn about the palindrome number and how to determine any number is palindrome or not.

Palindrome Number Example in Java

Palindrome Number Example in Java 

     

In this section, you will learn about the palindrome number and how to determine any number is palindrome or not. First of all we are going to read about the palindrome number.  This is the number that the actual number and after reversing this, in both cases the number is same that is called palindrome number otherwise not. Brief description below:

Description of program:

With the help of this program, we are going to determine whether the given number is palindrome or not.  To achieve the desired result, firstly we have to define a class named "Palindrome". After that we will ask the user to enter any integer type number and then we will reverse it. After reversing the number we will check whether the given number is palindrome or not. If the given number is larger, then it will display a message "Out of range!". 

Here is the code of this program

import java.io.*;

public class Palindrome  {
  public static void main(String [] args){
  try{
  BufferedReader object = new BufferedReader(
  new 
InputStreamReader(System.in));
  System.out.println("Enter number");
  int num= Integer.parseInt(object.readLine());
  int n = num;
  int rev=0;
  System.out.println("Number: ");
  System.out.println(" "+ num);
  for (int i=0; i<=num; i++){
  int r=num%10;
  num=num/10;
  rev=rev*10+r;
  i=0;
  }
  System.out.println("After reversing the number: "" ");
  System.out.println(" "+ rev);  
  if(n == rev){
  System.out.print("Number is palindrome!");
  }
  else{
  System.out.println("Number is not palindrome!");
  }
  }
  catch(Exception e){
  System.out.println("Out of range!");
  }
  }

Download this example