gpt4 book ai didi

java - 添加二维数组中的对角线值

转载 作者:行者123 更新时间:2023-12-02 17:38:13 25 4
gpt4 key购买 nike

我有以下二维数组

        int [][] array = {{ 0,  1,  2,  3,  4,  5,  6,  7,  8,  9},
{10, 11, 12, 13, 14, 15, 16, 17, 18, 19},
{20, 21, 22, 23, 24, 25, 26, 27, 28, 29},
{30, 31, 32, 33, 34, 35, 36, 37, 38, 39},
{40, 41, 42, 43, 44, 45, 46, 47, 48, 49},
{50, 51, 52, 53, 54, 55, 56, 57, 58, 59},
{60, 61, 62, 63, 64, 65, 66, 67, 68, 69},
{70, 71, 72, 73, 74, 75, 76, 77, 78, 79},
{80, 81, 82, 83, 84, 85, 86, 87, 88, 89},
{90, 91, 92, 93, 94, 95, 96, 97, 98, 99}};

我有这段代码来查找数组中所有值的总和。如何修改它以仅添加从 0 开始的对角线值(0+11+22+33 等)?

 public static int arraySum(int[][] array)
{
int total = 0;

for (int row = 0; row < array.length; row++)
{
for (int col = 0; col < array[row].length; col++)
total += array[row][col];
}

return total;
}

最佳答案

由于对角线是完美的正方形,因此您只需要一个循环即可添加对角线。

<小时/>

从原点添加对角线:

public static int arraySum(int[][] array){
int total = 0;

for (int row = 0; row < array.length; row++)
{

total += array[row][row];
}

return total;
}
<小时/>

添加两条对角线:

从原点添加对角线:(注意它会将中心添加两次......如果需要,您可以减去一)

public static int arraySum(int[][] array){
int total = 0;

for (int row = 0; row < array.length; row++)
{
total += array[row][row] + array[row][array.length - row-1];
}

return total;
}

关于java - 添加二维数组中的对角线值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6565862/

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