1995: 构造函数:求体积继续

内存限制:128 MB 时间限制:1 S
题面:传统 评测方式:文本比较 上传者:
提交:3 通过:3

题目描述

主函数为:

int main( )
{
Box box1;                   //没有给实参
cout<<"The volume of box1 is "<<box1.volume( )<<endl;
Box box2(15);               //只给定一个实参
cout<<"The volume of box2 is "<<box2.volume( )<<endl;
Box box3(15,30);            //只给定2个实参
cout<<"The volume of box3 is "<<box3.volume( )<<endl;
Box box4(15,30,20);            //给定3个实参
cout<<"The volume of box4 is "<<box4.volume( )<<endl;
return 0;
}

按要求实现结果输出

注意:默认时 h=w=len=10

输入格式

无输入