-
-
Save parzibyte/1d1759e8eff61f728be3a2f4af0c7ce5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# https://parzibyte.me/blog | |
function volumenDeCono($radio, $altura) | |
{ | |
return (M_PI * pow($radio, 2) * $altura) / 3; | |
} | |
$radio = 14.5; | |
$altura = 26.79; | |
$volumen = volumenDeCono($radio, $altura); | |
echo "El volumen es: " . $volumen; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment