Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,950 questions

51,892 answers

573 users

How to calculate the volume of any cube in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

class Test {
	double  length, width, height;
	double volume;
public:
	Test(double l, double w, double h);
	void print();
};

Test::Test(double l, double w, double h)
{
	length = l;
	width = w;
	height = h;

	volume = length * width * height;
}

void Test::print()
{
	cout << "volume: " << volume << endl;
}

int main()
{
	Test o(3.13, 2.76, 6.21);

	o.print();

	return 0;
}


/*
run:

volume: 53.6469

*/

 



answered Mar 20, 2018 by avibootz
edited Mar 20, 2018 by avibootz

Related questions

1 answer 147 views
147 views asked Mar 20, 2018 by avibootz
1 answer 130 views
1 answer 141 views
1 answer 185 views
1 answer 398 views
1 answer 747 views
1 answer 154 views
...