0

所以我正在做一个作业,我需要先按行对数组元素求和,然后按列求和。

我目前拥有的是这样的:

// Sum by Rows
for(int y =0; y< height; y++)
{
    for(int x = 0; x< width; x++)
    {
        total += array2d[x][y];
    }
}

// Sum by Columns
for(int x =0; x< width; x++)
{
    for(int y = 0; y< height; y++)
    {
        total += array2d[x][y];
    }
}

这个对吗?我只是想事先确定一下,因为这似乎太容易回答了。

4

1 回答 1

0

几处更正——

// Sum by Rows
for(int y =0; y< height; y++)
{
  for(int x = 0; x< width; x++)
  {
    total += array2d[y][x]; // y,x not x,y since you want row(y) to be fix 
                            // for each column in that row
  }
  //total = 0;        //uncomment this if you want sum for each row (store it or print it)
}

也相应地更改列索引

于 2013-10-30T17:16:58.937 回答