convert foo bar in an array to oof rab
Anonymous
// ca is a character array containing [f,o,o, , b, a, r] ArrayList charlist = new ArrayList(); String[] splitwords = (new String(ca)).split(" "); for(String word: splitwords) { StringBuffer temp = new StringBuffer(word).reverse(); for(int i=0; i
Check out your Company Bowl for anonymous work chats.