Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 24, 2021 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ec35ba12474b4be4ddfe7e7f2095599f to your computer and use it in GitHub Desktop.
Save parzibyte/ec35ba12474b4be4ddfe7e7f2095599f to your computer and use it in GitHub Desktop.
double calcularVolumen(double radio, double altura)
{
return (M_PI * pow(radio, 2) * altura) / 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment