public static String shuffleString(String string) { List letters = Arrays.asList(string.split("")); Collections.shuffle(letters); ...
確定! 回上一頁