Skip to content

(BlueJ,Java)Program to Find Whether No. is Palindrome or Not.

(BlueJ,Java)Program to Find Whether No. is Palindrome or Not.

Code:

/* Write a program to find whether no. is palindrome or not.
   Example :
           Input – 12521 is a palindrome no.
           Input – 12345 is not a palindrome no. */
class Palindrome{
      public static void main(int num){
         
          int n = num;
          int reverse=0,remainder;
          while(num > 0){
                remainder = num % 10;
                reverse = reverse * 10 + remainder;
                num = num / 10;
           }
          if(reverse == n)
              System.out.println(n+” is a Palindrome Number”);
          else
              System.out.println(n+” is not a Palindrome Number”);
     }
}
Comment below for your Query and Feedback… 🙂

5 thoughts on “(BlueJ,Java)Program to Find Whether No. is Palindrome or Not.”

Leave a Reply

Your email address will not be published. Required fields are marked *

error: Content is protected !!