// #include <iostream>
#include <cmath>
using namespace std;
// variable
float r, v;
// input
cout << "To find the volume of a sphere enter the radius: ";
cin >> r;
// formula
v = (4 / 3)*3.14*(pow(r, 3));
// output
cout << "The volume of the sphere is: " << v << endl;
system("pause");
return 0;
好的,这是我的代码,我试图找到一个球体的体积但是当我将4/3分为1而不是1.3333333并且它没有给我正确的答案时,有人请向我解释,尽量不要给我答案只是一个解释,所以我可以自己解决