Showing posts with label palindrome number. Show all posts
Showing posts with label palindrome number. Show all posts

Monday, June 21, 2010


Palindrome Number Example

This blog post explains you what is palindrome number and a java example to calculate palindrome number.

Palindrome Number
Palindrome Number is the same number after reversing the actual number.

For Example : 545 (After reversing, the output is same)

The example of palindrom number below :

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 a number");
int num= Integer.parseInt(object.readLine());
int n = numb;
int rev=0;
System.out.println("The Number is : ");
System.out.println(" "+ numb);
for (int i=0; i<=num; i++){
int r=numb%10;
numb=numb/10;
rev=rev*10+r;
i=0;
}
System.out.println("Output after reversing: "+ " ");
System.out.println(" "+ rev);
if(n == rev){
System.out.print("This Number is Palindrome!");
}
else{
System.out.println("This Number is not palindrome!");
}
}
catch(Exception e){
System.out.println("Unknown Number!");
}
}
}