菜鸟的博客

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

导航

2023年4月24日 #

2023.4.24

摘要: 1 //实验五任务二 2 #include <iostream> 3 using namespace std; 4 class vector3D 5 { 6 private: 7 float x,y,z; 8 public: 9 vector3D() 10 { 11 x = 0; 12 y = 0; 阅读全文

posted @ 2023-04-24 22:41 hhmzd233 阅读(8) 评论(0) 推荐(0) 编辑

2023.4.24

摘要: 1 //第9讲课件代码 2 #include <iostream> 3 using namespace std; 4 class CPolygon 5 { 6 protected: 7 int width,height; 8 public: 9 void set_values(int a,int b 阅读全文

posted @ 2023-04-24 17:38 hhmzd233 阅读(8) 评论(0) 推荐(0) 编辑