7

尝试调用该方法时出现错误:

int box(int rows, int cols, int [rows][cols])

从使用此调用的主要方法:

box(arrayDimensions, arrayDimensions, array);

但我不确定问题是什么。

谢谢。

4

2 回答 2

19
int box(int rows, int cols, int [rows][cols])

需要是

int box(int rows, int cols, int something[rows][cols])
于 2012-10-18T08:55:01.170 回答
1

请记住,您在函数定义/标头中使用的每个变量都需要有一个标识符/名称。像其他任何东西一样,您使用的数组需要有一个标识符/名称,因为它是一个变量 @AkshaiShah 很好地修改了您的代码。

于 2015-08-16T15:20:33.177 回答