0
check if a number is a Colindrome or not.
 Write a Program in C or Java to check if a number is a Colindrome or not.Colidrome is a word that has 3 alphabets followed by the reverse of the 3 alphabets and so on:Ex:cappacmollomaappaa
4 Answers
+ 1
prathamesh read the question yaar it's not palindrome
0
Do you mean palindrome? Seems like it. Here is the code
import java.util.*;
class Palindrome {
public static void main(String args[]) {
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("Entered string is a palindrome.");
else System.out.println("Entered string is not a palindrome.");
}
}
0
Sorry, my bad