Created
June 16, 2015 18:07
-
-
Save eriknyk/675cd02928f65623f5db to your computer and use it in GitHub Desktop.
fib.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$n = $_GET? $_GET['n']: $argv[1]; | |
function fib($n) | |
{ | |
if ($n <= 2) | |
return 1; | |
else | |
return fib($n-1) + fib($n-2); | |
} | |
printf("fib(%d) = %d\n", $n, fib($n, 2)); | |
echo PHP_EOL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment