摘要:
#include "stdafx.h" #include #include #include #define N 10 int getA(int arcs[N][N], int n)//按第一行展开计算|A| { if (n == 1) { return arcs[0][0]; } int ans = 0; int temp[N... 阅读全文
摘要:
#include "stdafx.h" #include #include #include #define NUM 3 int Fun(int n, int a[NUM][NUM]); /*函数声明*/ int main() { int i = 0, j = 0; /*i,j分别表示行与列*/ ... 阅读全文