Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试调用该方法时出现错误:
int box(int rows, int cols, int [rows][cols])
从使用此调用的主要方法:
box(arrayDimensions, arrayDimensions, array);
但我不确定问题是什么。
谢谢。
需要是
int box(int rows, int cols, int something[rows][cols])
请记住,您在函数定义/标头中使用的每个变量都需要有一个标识符/名称。像其他任何东西一样,您使用的数组需要有一个标识符/名称,因为它是一个变量 @AkshaiShah 很好地修改了您的代码。