Skip to content

Instantly share code, notes, and snippets.

@aoirint
Created July 20, 2017 12:38
Show Gist options
  • Save aoirint/2089ed2d20083fb5acbda4321468d191 to your computer and use it in GitHub Desktop.
Save aoirint/2089ed2d20083fb5acbda4321468d191 to your computer and use it in GitHub Desktop.
Cでフィボナッチ数列のテスト
#include "stdio.h"
int fibo(int i) {
if (i == 1) return 0;
if (i == 2) return 1;
return fibo(i-1) + fibo(i-2);
}
// int main(int argc, char *argv[]) {
int main(void) {
for (int i=1; i<31; i++) {
printf("%d\n", fibo(i));
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment