Palyndrome in Java

Language

This code will show you if the word is Palyndrome or not.
  1. import java.util.Scanner;
  2.  
  3. public class Palyndrome
  4. {
  5. public static void main(String[] args)
  6. {
  7. Scanner read = new Scanner(System.in);
  8.  
  9. int ctr = 0;
  10.  
  11. System.out.print("Enter any string: ");
  12. String str = read.next();
  13.  
  14. if(str.length()+1>3)
  15. {
  16.  
  17. for(int x=0,y=str.length()-1;x<str.length();x++,y--)
  18. {
  19. char a = str.charAt(x);
  20. char b = str.charAt(y);
  21.  
  22. if(a==b)
  23. {
  24. ctr++;
  25. }
  26.  
  27. }
  28.  
  29. if(ctr==str.length())
  30. {
  31. System.out.print("The string \"" + str + "\" is Palyndrome.");
  32. }
  33. else
  34. {
  35. System.out.print("The string \"" + str + "\" is NOT Palyndrome.");
  36. }
  37.  
  38. }
  39. else
  40. {
  41. System.out.print("The string \"" + str + "\" is too SHORT.");
  42. }
  43.  
  44. }
  45. }

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment