Skip to content

Instantly share code, notes, and snippets.

@RodriAndreotti
Created November 27, 2016 23:42
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 RodriAndreotti/8cd042fc1a4774c7a35504e7c1b11b20 to your computer and use it in GitHub Desktop.
Save RodriAndreotti/8cd042fc1a4774c7a35504e7c1b11b20 to your computer and use it in GitHub Desktop.
Cálculo de Fatorial
<?php
$n = 10;
$fatorial = 0;
for($i = 0; $i <= 10; $i++) {
if($i == 0) {
$fatorial = 1;
}
else{
$fatorial *= $i;
}
}
echo $fatorial;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment