Saved Bookmarks
| 1. |
A palindromic word is one that reads the same when reversed. For instance peep, deed and dad are palindromesi) create a class called palindromeii) in your palindromes class, create a method called reverse () which takes a string argument and return the reverse of the argument as a string. For example, if the argument is a Rome then your method should return emoriii) create a second method in palindrome called is palindrome () which takes a string argument and return true if the argument is a palindrome and false otherwise |
|
Answer» |
|