WAP to create a function reverse() which returns reverse of an integer. Use this function in main() to check whether a given string is palindrome or not. - Helpwalaa - Free IT Updates & Opportunities

New Updates

WAP to create a function reverse() which returns reverse of an integer. Use this function in main() to check whether a given string is palindrome or not.

Java Logo Transparent Png - Java Programming Language Logo, Png ...


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import java.util.*;
 
public class Palindrome
{
   public static void main(String args[]) throws Exception
   {
      String original, reverse = ""; 
      Scanner in = new Scanner(System.in);
     
      System.out.println("Enter a string to check if it is a palindrome");
      original = in.nextLine();
     
      int length = original.length();
     
      for (int i = length - 1; i >= 0; i--)
         reverse = reverse + original.charAt(i);
         
      if (original.equals(reverse))
         System.out.println("The string is a palindrome.");
      else
         System.out.println("The string isn't a palindrome.");
         
   }
}      

Most Popular