Back To C++ Basic Index
//program to find volume of box based on length,breadth and height #include
#include
void main() { float width,depth,height; float volume; cout<<"enter width of the box "; cin>>width; cout<<"enter depth of the box "; cin>>depth; cout<<"enter height of the box "; cin>>height; volume=width*depth*height; cout<<"volume of the box is "<