double long volume()
{
int radius; //Radius of a cylinder
int height; //Height of a cylinder
double long volume; //The resulting volume of the cylinder
double pi = 3.14; //The constant pi
cout << "Enter Radius: ";
cin >> radius; //User inputs radius of cylinder
cout << "Enter height: ";
cin >> height; //User inputs height of cylinder
volume = radius * radius * height * pi ; // v = (pi)(h)(r)^2
return volume;
}
int main ()
{
cout << "Formula Calculator \n";
cout << "The volume is " << volume();
return 0;
}
Единственная проблема, которую я обнаружил, была с объявлением вашей функции. Вы использовали int
вместо double long
, который вы использовали для объявления полученного тома. Также удалите c из cvolume()
в вашей основной функции.