矩阵类的写法

/* 结构体:matrix 成员变量: int n, m 矩阵大小 int a[][] 矩阵内容 重载运算符: + - * 成员函数: void clear() 清空矩阵*/ #include<iostream> #include<cstdio> #include<cstring> using namespace std; const int maxn = 1010; const
相关文章
相关标签/搜索