public class StringLoop{ private String theString; //The cunstructor should initialize //theString so initialize theString to the paramater public StringLoop(String s){ ; } //return the string reversed public String reverseString(String str){ return ""; } //wnat an A+ you must do this //return true if is s is a palindome public boolean isPalindrome(String s){ return true; } public boolean hasLetter(String str,String letterToFind){ return true; } public String toNewLines(String str){ String retStr=""; for(int i = 0 ; i < str.length() -1 ; i++){ retStr += str.substring(i,i+1) + ","; } return retStr; } }