check if a number is a Colindrome or not. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

10th May 2017, 7:39 PM
Mohan
Mohan - avatar
4 Answers
10th May 2017, 9:21 PM
Tashi N
Tashi N - avatar
+ 1
prathamesh read the question yaar it's not palindrome
11th May 2017, 2:02 AM
Mohan
Mohan - avatar
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."); } }
10th May 2017, 8:27 PM
Prathamesh Jadhav
Prathamesh Jadhav - avatar
0
Sorry, my bad
11th May 2017, 3:59 AM
Prathamesh Jadhav
Prathamesh Jadhav - avatar