Skip to main content

How to write a palindrome program in java

The Below program will tell you the given number is palindrome or not. In generally most of the interviewers are asking this question during interview process and candidates struggling to answer this question. Please practice the below program, this will help you. I hope.

package testing;
import java.util.Scanner;
/**
 * Please find the Java program to check if given number is palindrome or not.
 * If number and its reverse is equal then this is called palindrome
 * This program can also be used to reverse a number in Java
 */
public class Palindromeprogram {

    public static void main(String args[]){
     
        System.out.println("Please Enter a number : ");
        int palindrome = new Scanner(System.in).nextInt();
     
        if(isPalindrome(palindrome)){
            System.out.println("Number : " + palindrome + " is a palindrome");
        }else{
            System.out.println("Number : " + palindrome + " is not a palindrome");
        }      
    }
    /*
     * Here Java method to check if given number is palindrome or not
     */
    public static boolean isPalindrome(int number) {
        int palindrome = number; // copied number into variable
        int reverse = 0;
        while (palindrome != 0) {
            int remainder = palindrome % 10;
            reverse = reverse * 10 + remainder;
            palindrome = palindrome / 10;
        }
        if (number == reverse) {
            return true;
        }
        return false;
    }

}

Output:
Please Enter a number :
2345
Number : 2345 is not a palindrome
Please Enter a number :
21012
Number : 21012 is a palindrome

Popular posts from this blog

List of software companies in Chennai

List of software companies in Chennai India's Information technology is an industry consisting of IT services and business process outsourcing(BPO). In india information technology is playing an important role, IT sector in India is generating more than 3 million employment. IT & ITeS industry in India has grown enormously. Indian Information Technology has made a mark in the world. Many MNC's are started branches in Indian cities like Bangalore, Chennai, Delhi etc,. The below table shows you list of software companies in Chennai. 4i Apps Solutions Pvt Ltd http://www.4iapps.com Abra Technologies http://www.abratechnologies.com Accel Frontline Ltd http://www.accelfrontline.in Adrenalin eSystems Ltd http://www.myadrenalin.com Akmin Technologies Pvt Ltd http://www.akmin.com American Megatrends India Pvt Ltd http://www.amiindia.co.in Anantara Solutions Pvt Ltd http://www.anantsol.com Arrowpoint Technologies Pvt Ltd http://www.arrowpointtechn...

Freshers Off Campus at HCL Technologies (B.E/B.Tech 2013/14 Batch)

Company : HCL   Location : pan India   Experience : Freshers   Eligibility : B.E./B.Tech 2013/2014 passed outs HCL is recruting through AMCAT. Click  myAMCAT For more details and registration P.S : Though they mentioned above criteria in title, but still options are available for other students ( 2010 passedouts, Polytechnic , PG etc ) , so kindly check and apply .

Polaris Mega Weekend Drive for Software Engineers On 18th October 2014 @ Chennai

Polaris Mega Weekend Drive for Software Engineers On 18th October 2014   Company Name: Polaris Job Description: Polaris Mega Weekend Drive for Software Engineers On 18th October 2014 Skill Sets:   - Java Developers -  Java, Struts, JSP, Servlets (or) Spring, Hibernate.      Educational Qualification: Any Graduates         Work Experience: 2 to 6 Yrs Work Location: Chennai                                     Walk-in Details: - Walk-in Date: 18th Oct 2014. - Walk-in Time: 9 AM.          Note: - Job Last Date:    Saturday, October 18, 2014    Communication Address:      Polaris Financial Technologies ltd No.34, Rajiv Gandhi Salai, IT Highway Road,...