here is my problem I am new to java i was wondering how can i solve this issue...
public static String rot13( String str )
method rot13 will rotate the characters of str by 13. That is each letter is shifted 13 places, ie:
To rotate each letter by 13, Check to see if the letter is upper or lower case. Add 13 to the letter, if the result of the addition breaks the range for that case subtract 26
public static int simpleHash(String str ) method simpleHash will sum the ASCII codes of the characters in str and return the result.