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) 编辑