Popular Posts

14.Write a program to take values and find the volume of box .

14.Write a program to take values and find the volume of box .


#include
#include
int main()
{
clrscr();
int b=10,h=5,l=15,v;
v=l*b*h;
cout<<"Volume of Box: "< getch();
return 0;
}

Output:

Volume of Box: 750

No comments: