gpt4 book ai didi

java - 我尝试在 2D 数组中找到总和最小的行,但只得到 0

转载 作者:行者123 更新时间:2023-11-30 02:43:17 24 4
gpt4 key购买 nike

为什么我的 minRow 和 minRowIndex 为 0?谢谢谁回复。

import java.util.Scanner;

public class test1 {

public static void main(String[] arg) {

Scanner in = new Scanner(System.in);

int [][] matrix = {{1, 2, 3, 4, 5}, {2, 3, 4, 5, 6}, {3, 4, 5, 6, 7}};

int minRow = 0;
int minRowAvg = 0;
int minRowIndex = 0;

for (int row = 1; row < matrix.length; row++){
int rowSum = 0;
for (int col = 0; col < matrix[row].length; col++){
rowSum += matrix[row][col];
}

if (rowSum < minRow && rowSum > 0){
minRow = rowSum;
minRowIndex = row;
}
}
System.out.println("Row " + minRowIndex + " has the minimum sum of " + minRow);

}

}

最佳答案

rowSum 永远不会小于 minRow,因为您将 minRow 初始化为 0。

您应该将其初始化为Integer.MAX_VALUE

int minRow = Integer.MAX_VALUE;

关于java - 我尝试在 2D 数组中找到总和最小的行,但只得到 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41004430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com