获取行总计。这个函数应该接受一个二维数组作为它的第一个参数和一个整数作为它的第二个参数。第二个参数应该是数组中一行的下标。该函数应返回指定行中值的总和。
如何在 C++ 中构建这个函数?
这就是我正在使用的:
#include <iostream>
#include <iomanip>
using namespace std;
//declare global variables
const int NUM_ROWS = 3;
const int NUM_COLS = 3;
//prototypes
void showArray(int array[][NUM_COLS], int);
int getTotal(int [][NUM_COLS], int, int);
int getAverage(int [][NUM_COLS], int, int);
int getRowTotal(int [][NUM_COLS], int, int);
int main() {
int total = 0;
int average = 0;
int rowTotal = 0;
int smallArray[NUM_ROWS][NUM_COLS] = { {1, 2, 3},
{4, 5, 6},
{7, 8, 9} };
int largeArray[NUM_ROWS][NUM_COLS] = { {10, 20, 30},
{40, 50, 60},
{70, 80, 90} };