write a c++ to define a class box with length,breadth and
height as data member and input value(),printvalue() and
volume() as member functions.
Answer Posted / manish bhambhu
#include<iostream>
using namespace std;
class cuboid
{
public:
float length;
float breadth;
float height;
};
int main()
{
cuboid Box1;
cuboid Box2;
float volume = 0.0;
Box1.height = 5.0;
Box1.length = 6.0;
Box1.breadth = 7.0;
Box2.height = 10.0;
Box2.length = 12.0;
Box2.breadth = 13.0;
volume=Box1.height*Box1.length*Box1.breadth;
cout<<"
Volume of Box1 : "<<volume<<endl;
volume=Box2.height*Box2.length*Box2.breadth;
cout<<"
Volume of Box2 : "<<volume<<endl;
return 0;
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
totoo po ba ang manga aliens!
Define stl.
Is stl open source?
Name the different types of stl containers.
Is stl part of c++ standard?
What is the use of stl?
Describe the My Computer and My Documents folders; identify the elements that are present in every Window.
What are the symptoms of stl?
What does stl stand for in basketball?
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
how to use C++?
What is the stl, standard template library?
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
What two types of containers does the stl provide?
Who created stl?