主函数为:
int main( )
{Box box1(12,25,30); //建立对象box1,并指定box1长、宽、高的值
cout<<″The volume of box1 is ″<<box1.volume( )<<endl;
Box box2(15,30,21); //建立对象box2,并指定box2长、宽、高的值
cout<<″The volume of box2 is ″<<box2.volume( )<<endl;
return 0;
}
无输入