二维数组:求方阵主、副对角线上元素之和。.cpp 510 Bytes 一键复制 编辑 原始数据 按行查看 历史 郑伟俊 提交于 1年前 . 11.12 123456789101112131415161718192021222324252627282930313233 #include <stdio.h> #define M 5 int fun(int a[M][M]) { int i=0,j=0; int sum = 0...