Skip to content

Instantly share code, notes, and snippets.

View nghiatv's full-sized avatar
Working from cafe

Nghĩa nghiatv

Working from cafe
View GitHub Profile
index
@nghiatv
nghiatv / index.php
Created December 9, 2015 04:25
bai tap can bac n
<?php
function can(float $num, int $lvl): float{
$lvl = 1/$lvl;
$num = pow($num, $lvl);
return $num;
}
echo can(27, 5);
?>