摘要:
#include <iostream> #include <windows.h> #include <fstream> #define N 64 using namespace std; bool isPeak(int grid[][N], int r, int c); int main() { i 阅读全文
摘要:
数组作为函数的参数传递,不是单纯的值传递,传递的是数组本身(访问的是同一个地址,相同的值)。 版本1:指明参数: #include <iostream> #include <windows.h> using namespace std; void part1(int put[3][4]) { for 阅读全文