A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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);
        }
}

4 个回复

倒序浏览
有技术啊
回复 使用道具 举报
不管几维,遍历就好了
回复 使用道具 举报
这也行??
回复 使用道具 举报
厉害啊!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马