#includeint count=0;#define MAX_SIZE 2#define SWAP(x, y, t) ((t)=(x), (x)=(y),(y)=t)void transpose(int a[][MAX_SIZE]);int main(void){ int a [MAX_SIZE][MAX_SIZE]={ {1,2}, {3,4}}; for(int i=0; i
本文共 295 字,大约阅读时间需要 1 分钟。
#includeint count=0;#define MAX_SIZE 2#define SWAP(x, y, t) ((t)=(x), (x)=(y),(y)=t)void transpose(int a[][MAX_SIZE]);int main(void){ int a [MAX_SIZE][MAX_SIZE]={ {1,2}, {3,4}}; for(int i=0; i
转载于:https://www.cnblogs.com/WALLACE-S-BOOK/p/9732309.html