0

这是我的一些代码。我试图保持一个二维数组的运行总数。我有一个随机数生成器来生成二维数组中的 ax 和 y 位置。该位置在 x 和 y 位置上添加了 2,而直接在下方、上方、右侧和左侧的位置在此处添加了 1。这可能会发生多次。我需要将输入到数组中的所有值相加。

我无法让运行总数起作用。我不确定如何将输入的值添加到二维数组中。有谁知道如何做到这一点?

int paintSplatterLoop(int ary [ROWS][COLS])
{
double bagCount,
       simCount,
       totalCupCount = 0.0;//accumulator, init with 0

double totalRowCount = 0, totalColCount=0;

double simAvgCount = 0;
double cupAvgCount;

for (simCount = 1; simCount <= 1; simCount++)
{
    for (bagCount = 1; bagCount <= 2; bagCount++)
    {
        for (int count = 1; count <= bagCount; count++);
        {
            int rRow = (rand()%8)+1;
            int rCol = (rand()%6)+1;
            ary[rRow][rCol]+=2; 
            ary[rRow-1][rCol]+=1; 
            ary[rRow+1][rCol]+=1;
            ary[rRow][rCol-1]+=1;
            ary[rRow][rCol+1]+=1;
        }
        totalRowCount += ary [rRow][rCol];
        totalColCount += rCol;
    }

}
totalCupCount = totalRowCount + totalColCount;
cout<<"total cups of paint "<<totalCupCount<<"\n"<<endl;

 return totalCupCount;
}
4

1 回答 1

1

这就是我对二维数组的内容求和的方式:

int sum_array(int array[ROWS][COLS])
{
    int sum = 0;

    for (int i = 0; i < ROWS; ++i)
    {
        for (int j = 0; j < COLS; ++j)
        {
            sum += array[i][j];
        }
    }

    return sum;
}
于 2013-10-09T18:52:06.567 回答