Write a program in C++ to calculate the volume of a cube
- برمجة سي بلس بلس
- برمجة
- 2021-05-11
- MarwaMohammed
الأجوبة
#include <iostream>
using namespace std;
int main()
{
int sid1;
float volcu;
cout << "\n\n Calculate the volume of a cube :\n";
cout << "---------------------------------------\n";
cout<<" Input the side of a cube : ";
cin>>sid1;
volcu=(sid1*sid1*sid1);
cout<<" The volume of a cube is : "<< volcu << endl;
cout << endl;
return 0;
}