Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 12, 2019 23:41
Show Gist options
  • Save parzibyte/f4f024889c9d1c216aade95af4945dad to your computer and use it in GitHub Desktop.
Save parzibyte/f4f024889c9d1c216aade95af4945dad to your computer and use it in GitHub Desktop.
<?php
/*
Raíz cúbica en PHP
https://parzibyte.me/blog
*/
function raiz_cubica($numero){
return pow($numero, 1/3); // Elevar número a la potencia 0.333333333
}
$numero = 27;
$raiz = raiz_cubica($numero);
echo "La raíz cúbica de $numero es $raiz";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment