martedì 13 settembre 2011

FIBONACCI.PHP

<html>
<head>
<title> fibonacci </title>
</head>
<body>

<?php
//inizializzazione delle variabili
$scelta=$_POST {'scelta'};
$numero=$_POST {'numero'};
//controllo che $numero sia intero e > 0

if($numero > 0 && $numero-floor($numero)==0) {
//Verifica della scielta effettuata
// fino al numero digitato
if($scelta=="finnum") {
$nnold=1; $nnew=1; $natt=1;
//ciclo while
echo "$nold - $nnew";
while($nold+$nnew <= $numero) {
$natt=$nnew +$old;
echo"$natt - ";
$nold=$nnew;
$nnew=$natt;
}
}
if($scelta=="parnum") {
$nnold=1; $nnew=1; $natt=1;
//ciclo while
echo "$nold - $nnew";
$i=3;
while($i <= $numero) {
$natt=$nnew +$old;
echo"$natt - ";
$nold=$nnew;
$nnew=$natt;
$i++;
}
}

}

?>
</body>
</html>

Nessun commento:

Posta un commento