数组遍历,二分查找

如何遍历二位数组:

for(int i=0;i<arr.length;i++){

  for(int j=0;j<arr[i].length;j++){

  System.out.println(arr[i][j]);

  }

}

引用数据类型--->null或者地址值

[10,99]生成范围

int(Math.random()*(99-10+1)+10)

数组的反转

原文地址:https://www.cnblogs.com/clcaihua/p/11720462.html