Programming Tutorials

Comment on Tutorial - Palindrome String in Java By Grant Braught



Comment Added by : Roopesh H

Comment Added at : 2012-07-27 04:47:48

Comment on Tutorial : Palindrome String in Java By Grant Braught
@Palla Subramanyam : Your logic is correct, but SOP is not proper.

if(abc.equals(def))
System.out.println("yes its a palindrome");
else
System.out.println("No, it is not a palindrome");


View Tutorial