#include <iostream.h>
#include<conio.h>
class Box
{
public:
double length;
double width;
double height;
double volume()
{
return length * width * height;
}
};
void main()
{
clrscr();
Box firstBox = { 80.0, 50.0, 40.0 };
Box SecondBox = firstBox;
SecondBox.length *= 1.1;
SecondBox.width *= 1.1;
SecondBox.height *= 1.1;
cout <<"Length : " <<SecondBox.length <<endl;
cout<<"Width : " <<SecondBox.width <<endl;
cout<<"Height : "<<SecondBox.height<<endl;
cout << "Volume of second Box object is " << SecondBox.volume()<< endl;
getch();
}
Dinesh Thakur holds an B.SC (Computer Science), MCSE, MCDBA, CCNA, CCNP, A+, SCJP certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps. For any type of query or something that you think is missing, please feel free to Contact us.
Search Content
Popular Article
Basic Courses
Advance Courses