1import java.util.*;
2class PalindromeExample2
3{
4 public static void main(String args[])
5 {
6 String original, reverse = ""; // Objects of String class
7 Scanner in = new Scanner(System.in);
8 System.out.println("Enter a string/number to check if it is a palindrome");
9 original = in.nextLine();
10 int length = original.length();
11 for ( int i = length - 1; i >= 0; i-- )
12 reverse = reverse + original.charAt(i);
13 if (original.equals(reverse))
14 System.out.println("Entered string/number is a palindrome.");
15 else
16 System.out.println("Entered string/number isn't a palindrome.");
17 }
18}
1import java.util.Scanner;
2
3public class Palindrome
4{
5 public static void main(String args[])
6 {
7 int num,temp,reverse=0;
8 Scanner input=new Scanner(System.in);
9 num=in.nextInt();
10 temp=num;
11 //code to reverse the number
12 while(temp!=0)
13 {
14 int d=temp%10; //extracts digit at the end
15 reverse=reverse*10+d;
16 temp/=10; //removes the digit at the end
17 }
18 // 'reverse' has the reverse version of the actual input, so we check
19 if(reverse==num)
20 {
21 System.out.println("Number is palindrome");
22 }
23 else
24 {
25 System.out.println("Number is not palindrome");
26 }
27 }
28}
1package test
2//The function below checks if a string is a palindrome
3//True = Is a palindrome & False = Not a palindrome
4 public boolean isPalindromString(String text){
5 String reverse = reverse(text);
6 if(text.equals(reverse))
7 {
8 return true;
9 }
10
11 return false;
12 }
13//This function returns the reverse String of its input.
14//Ex. if given "hello", it will return "olleh"
15 public String reverse(String input)
16 {
17 if(input == null || input.isEmpty())
18 {
19 return input;
20 }
21 return input.charAt(input.length()- 1) + reverse(input.substring(0, input.length() - 1));
22 }
1package test
2//The function below checks if a string is a palindrome
3//True = Is a palindrome & False = Not a palindrome
4 public boolean isPalindromString(String text){
5 String reverse = reverse(text);
6 if(text.equals(reverse))
7 {
8 return true;
9 }
10
11 return false;
12 }
13//This function returns the reverse String of its input.
14//Ex. if given "hello", it will return "olleh"
15 public String reverse(String input)
16 {
17 if(input == null || input.isEmpty())
18 {
19 return input;
20 }
21return input.charAt(input.length()- 1) + reverse
22 (input.substring(0, input.length() - 1));
23 }
1//This function generates a palindrom by recursively reversing a String,
2//recursively add it and checks if it's a palindrom
3
4public static String generatePalindrom(String s) {
5 return s.equals(reverseString(s)) ? s
6 : generatePalindrom(String.valueOf(Integer.parseInt(s) + Integer.parseInt(reverseString(s))));
7}
8
9public static String reverseString(String s) {
10 return s.length() == 1 ? s : s.charAt(s.length() - 1) + reverseString(s.substring(0, s.length() - 1));
11}