菜鸟的博客

纵有疾风起,人生不言弃。

导航

2023年4月29日 #

2023.4.29

摘要: 1 //课本习题8-5 2 #include <iostream> 3 #include <string> 4 using namespace std; 5 class Mammal 6 { 7 public: 8 virtual void speak() 9 { 10 cout<<"动物正在说话" 阅读全文

posted @ 2023-04-29 18:50 hhmzd233 阅读(9) 评论(0) 推荐(0) 编辑

2023.4.28

摘要: 1 //实验六任务5 2 #include <iostream> 3 #include <string> 4 using namespace std; 5 class Student 6 { 7 public: 8 Student(int ID,string name); 9 void setnam 阅读全文

posted @ 2023-04-29 00:47 hhmzd233 阅读(15) 评论(0) 推荐(0) 编辑