HW7.18

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HW7.18相关的知识,希望对你有一定的参考价值。

技术分享

 

 1 public class Solution
 2 {
 3     public static void main(String[] args)
 4     {
 5         int[][] m = {{1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}};
 6 
 7         shuffle(m);
 8 
 9         for(int i = 0; i < m.length; i++)
10         {
11             for(int j = 0; j < m[0].length; j++)
12                 System.out.print(m[i][j] + " ");
13             System.out.println();
14         }
15     }
16 
17     public static void shuffle(int[][] array)
18     {
19         for(int i = 0; i < array.length; i++)
20         {
21             int randomLocation = (int)(Math.random() * array.length);
22             int[] temp = new int[array[0].length];
23             for(int j = 0; j < array[0].length; j++)
24             {
25                 temp[j] = array[i][j];
26                 array[i][j] = array[randomLocation][j];
27                 array[randomLocation][j] = temp[j];
28             }
29         }
30     }
31 }

 

以上是关于HW7.18的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数