摘要: 修正了复制构造函数(这个坑掉过好几次额…) 完善交互 1 //matrix.h 2 #include<iostream> 3 using namespace std; 4 5 class IntMatrix{ 6 public: 7 IntMatrix(int ir,int ic); 8 IntMa 阅读全文
posted @ 2021-05-27 22:59 satellite& 阅读(136) 评论(0) 推荐(0)
摘要: 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 5 class Person 6 { 7 protected: 8 string name; 9 char sex; 10 int age; 11 public: 12 阅读全文
posted @ 2021-05-27 21:29 satellite& 阅读(256) 评论(0) 推荐(0)