Skip to content

Instantly share code, notes, and snippets.

@aoirint
Created July 20, 2017 12:55
Show Gist options
  • Save aoirint/3b315bc218a1d167350692c71de67306 to your computer and use it in GitHub Desktop.
Save aoirint/3b315bc218a1d167350692c71de67306 to your computer and use it in GitHub Desktop.
PHPでフィボナッチ数列のテスト
<?php
function fibo($i) {
if ($i == 1) return 0;
if ($i == 2) return 1;
return fibo($i-1) + fibo($i-2);
}
for ($i=1; $i<31; $i++) {
print(fibo($i)."<br>");
// echo(fibo($i)."<br>");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment