摘要: 立方体类Box的实现,完成计算体积、计算表面积、输出结果等功能。 #include<iostream>using namespace std; class Box {public: void seta(float a) { len=a; } float getvolume() { return le 阅读全文
posted @ 2023-04-24 10:43 涨涨涨张 阅读(12) 评论(0) 推荐(0) 编辑