摘要:
问题:比较简单^^代码:#include <iostream>using namespace std;#define MAXSIZE 1000typedef struct tMatrix{ int row; int col; int data;}TMatrix;typedef struct matrix{ TMatrix arr[MAXSIZE]; int r,c,num;}Matrix;void CreateTMatrix(Matrix &c){ int rs,cs,ns; int p,q,e; cout<<"please input the row 阅读全文
posted @ 2013-04-27 15:51
xshang
阅读(380)
评论(0)
推荐(0)