标签:
/* *Copyright(c)2016,烟台大学计算机与控制工程学院 *All rights reserved *文件名称:123.cpp *作 者:隋宗涛 *完成日期:2016年5月8日 *版 本 号:v1.0 * *问题描述:求3个长方柱(Bulk)的体积。数据成员包括长(length)、宽(width)、高(heigth)、体积 *输入描述:三个整数,代表长 宽 高。 *程序输出:两个数,代表长方柱的体积和表面积 */ #include <iostream> using namespace std; class Bulk { public: void get_value(); void display(); private: float lengh; float width; float height; }; void Bulk::get_value() { cout<<"please input lengh, width,height:"; cin>>lengh; cin>>width; cin>>height; } void Bulk::display() { cout<<"The volume is: "<<lengh*width*height<<endl; cout<<"The surface area is: "<<2*(lengh*width+lengh*height+width*height)<<endl; } int main() { Bulk b1,b2,b3; b1.get_value(); cout<<"For bulk1: "<<endl; b1.display(); b2.get_value(); cout<<"For bulk2: "<<endl; b2.display(); b3.get_value(); cout<<"For bulk3: "<<endl; b3.display(); return 0; }
运行结果:
标签:
原文地址:http://blog.csdn.net/suizongtao/article/details/51346360