C#1.數組裏有{1,2,3,4,5,6,7,8,9,10},在一個 新數組中進行隨機打亂順序。

思路一:經過Random.next獲取隨機下標數組 //1.數組裏有{1,2,3,4,5,6,7,8,9,10},在一個 //新數組中進行隨機打亂順序。 public static int[] RandArray(int[] arr) { int[] newarr = new int[arr.Length];
相關文章
相關標籤/搜索