/* Description 编写基于对象的程序,求长方柱(Bulk)的体积。数据成员包括长(length)、宽(width)、高(heigth)、体积,要求用成员函数实现下面的功能: (1)由键盘输入长方柱的长、宽、高; (2)计算长方柱的体积(volume)和表面积(areas); (3)输出这长方柱的体积和表面积。 Input 长方柱的长、宽、高 Output 长方柱的体积和表面积 Sample Input 2 3 4 Sample Output 24 52 */ #include<iostream> using namespace std; class Bulk { public: void set_value(); double get_volume(); double get_areas(); private: double lengh; double width; double height; }; void Bulk::set_value() { cin>>lengh>>width>>height; } double Bulk::get_volume() { return lengh*width*height; } double Bulk::get_areas() { return 2*(lengh*width+lengh*height+width*height); } int main() { Bulk b1; b1.set_value(); cout<<b1.get_volume()<<endl; cout<<b1.get_areas()<<endl; return 0; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)