Answer:
1. #include <iostream>
2. #include <cmath>
3.
4. using namespace std;
5.
6. int main()
7. {
8. float radius;
9. cout << "Type the radius of the base: "; // Type a number
10. cin >> radius ; // Get user input from the keyboard
11.
12. float height;
13. cout << "Type the height: "; // Type a number and press enter
14. cin >> height; // Get user input from the keyboard
15.
16. float volumeCylinder = 3.1416 * radius * radius * height;
17. float cubeSide = std::pow(volumeCylinder, 1/3.);
18. cout<<"Cube side is: "<< cubeSide;
19.
20. return cubeSide;
21. }
Explanation: