摘要:/* 矩阵相乘*/#include "stdio.h"#include "conio.h"#define row 2#define col 3main(){ int c[row][row]={0}; int a[row][col]={ {1,2,3}, {4,5,6} ...
阅读全文
posted @ 2007-02-08 14:19
|
|||
02 2007 档案
摘要:/* 矩阵相乘*/#include "stdio.h"#include "conio.h"#define row 2#define col 3main(){ int c[row][row]={0}; int a[row][col]={ {1,2,3}, {4,5,6} ...
阅读全文
posted @ 2007-02-08 14:19
|
|||