Skip to content

Instantly share code, notes, and snippets.

@labra
Created October 20, 2015 16:55
Show Gist options
  • Save labra/dc0c92ac551177b68590 to your computer and use it in GitHub Desktop.
Save labra/dc0c92ac551177b68590 to your computer and use it in GitHub Desktop.
solución ejercicio primos.php
<?php
class Primos {
function factores($n) {
$factores = array(1);
for ($i = 2; $i <= $n; $i++) {
while ($n % $i == 0) {
$factores[] = $i;
$n = $n / $i;
}
}
return $factores;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment