48 lines
401 B
PHP
48 lines
401 B
PHP
|
|
<?php
|
|
|
|
include ('header.html');
|
|
|
|
///////////////////////////
|
|
echo<<<_css
|
|
|
|
<style>
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
_css;
|
|
echo "\n";
|
|
///////////////////////////
|
|
|
|
|
|
|
|
for ($i=1;$i<=9;$i++){
|
|
|
|
echo "<p>\n";
|
|
echo "$i : " . fattoriale($i);
|
|
|
|
echo "</p>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
include ('footer.html');
|
|
|
|
|
|
function fattoriale ($input){
|
|
|
|
if ($input == 1){
|
|
return 1;
|
|
} else {
|
|
return (fattoriale($input -1 ) * $input);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|