第3週目プロジェクト5-直方体クラス


/*
*            :
*Copyright(c)2014,           
*All rights reserved.
*    :
*  :   
*    :2014   3  10  
*   :v1.0
*             :
*    :  、 、 
*    :      、 、 ,       
*    :   ,  
*    :
*    :
*/#include<iostream>
using namespace std;
class Bulk
{
private:
    double length;
    double width;
    double height;
public:
    void volume();
    void areas();
    void input();
};
void Bulk::input()
{
    double l,w,h;
    cout<<"    、 、 :"<<endl;
    cin>>l>>w>>h;
    length=l;
    width=w;
    height=h;
}
void Bulk::volume()
{
    cout<<"   :"<<length*width*height<<endl;
}
void Bulk::areas()
{
    cout<<"    :"<<2*height+2*width+2*length<<endl;
}
int main()
{
    Bulk a,b,c;
    a.input();
    b.input();
    c.input();
    a.areas();
    a.volume();
    b.areas();
    b.volume();
    c.areas();
    c.volume();
    return 0;
}

実行結果:
心得: