The Program in C++ to Calculate the Volume of a Cube is given below:
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double side, volume;
cout << "Enter the side of the cube: ";
cin >> side;
volume = pow(side,3);
cout << "Volume of the cube: " << volume << endl;
return 0;
}
Output:
Enter the side of the cube: 6
Volume of the cube: 216
Pro-Tips💡
In this corrected version of the code, the function ‘pow(x, y)'
is included in the library.
This function calculates x raised to the power of y.
In this code, it is used to calculate the cube of the side entered by the user, which gives us the volume of the cube.
Learn C-Sharp ↗
C-sharp covers every topic to learn about C-Sharp thoroughly.
Learn C Programming ↗
C-Programming covers every topic to learn about C-Sharp thoroughly.
Learn C++ Programming↗
C++ covers every topic to learn about C-Sharp thoroughly.