已知a=[6 9 3],则max(a)=()
举一反三
- 已知A=[1,2,3;-1,-3,2;4,-4,3],则max(max(A,[],2))=( )
- 1.已知A=[1,2,3;-1,-3,2;4,-4,3],则max(max[A,[ ],2))=( ),min(A(:))=( )
- 创建数组arr=[ [0 1 2 3] [4 5 6 7] [8 9 10 11]],则arr*3=___________。
- 已知int[][] arr=new int [3][]{new int[3]{5,6,2},new int[5]{6,9,7,8,3},new int[2]{3,2}};则arr[2][2]的值是( )。 A: 9 B: 1 C: 6 D: 越界
- 在C#中,定义了一个如下的交错数组myArray3:int[][] myArray3 = new int[3][] { new int[3] { 5, 6, 2 }, new int[5] { 6, 9, 7, 8, 3 }, new int[2] { 3, 2 } };则myArray3[2][2]的值是( )。 A: 9 B: 2 C: 6 D: 产生异常:“索引超出了数组界限”