zoukankan      html  css  js  c++  java
  • 【java】实现统计数组每行最小值,每列最大值

    package myjar2;

    public class myjar2 {
        public static void main(String[] args) {
            int a[][] = new int[5][6];
            int min[] = { 100, 100, 100, 100, 100 }, max[] = { 0, 0, 0, 0, 0, 0 };
            for (int i = 0; i < 4; i++) {
                
                for (int j = 0; j < 5; j++) {
                    a[i][j] = (int) (Math.random() * 100);
                    if (min[i] > a[i][j]) {
                        min[i] = a[i][j];
                    }
                    if (max[j] < a[i][j]) {
                        max[j] = a[i][j];
                    }
                    a[i][5] = min[i];
                    a[4][j] = max[j];
                }

            }
            for (int i = 0; i < 5; i++) {
                for (int j = 0; j < 6; j++) {
                    if(i!=4||j!=5){
                    System.out.print(a[i][j] + " ");
                    }
                }
                System.out.println();
            }
        }
    }

  • 相关阅读:
    C/C++笔试题
    #include "" 和 #include <> 的区别
    cc、gcc、g++、CC的区别概括
    在shell脚本中调用另一个脚本的三种不同方法(fork, exec, source)
    vi复制粘贴
    cleartool常用命令
    [转]Tomcat日志详解
    Profile
    Bean的初始化和销毁
    SpringEL和资源调用
  • 原文地址:https://www.cnblogs.com/zhizhuniuniu/p/4159060.html
Copyright © 2011-2022 走看看