int side, vol; cout<<" Input the side of a cube : "; cin>>side; vol = side * side * side; cout<<" The volume of a sphere is : "<< vol << endl; cout << endl;