void shuffle(int [] arr) { for (int i = 0; i < arr.length; i++) { int index = (int) (Math.random() * arr.length); int temp = arr[i]; ...
確定! 回上一頁