package com.test;
/**
*
* 1、 定义一个二维int数组,编写代码获取最小元素。
*
*/
public class Test0 {
public static void main(String[] args) {
int[][] arrs = { { -89, 11, 54, 25 }, { 5, 6, -100 }, { 9, 44, 7 },
{ 2, 3, 4 } };
int temp = arrs[0][0];
for (int i = 0; i < arrs.length; i++) {
for (int j = 0; j < arrs[i].length; j++) {
if (temp > arrs[i][j]) {
temp = arrs[i][j];
}
}
}
System.out.println(temp);
}
} |
|