摘要: 1 #include <iostream> 2 #include <iomanip> 3 using namespace std; 4 class matrix{ 5 private: 6 int row,column; 7 int **mat; 8 public: 9 matrix(const m 阅读全文
posted @ 2023-05-16 21:18 Code13 阅读(34) 评论(0) 推荐(0) 编辑