You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prmf9zk3a f3288bf0c5
Update README.md
4 years ago
README.md Update README.md 4 years ago

README.md

#include <stdio.h> //fibonacci数列的第n项 int fibo(int n) { if (n == 1 || n == 2) { return 1; } return fibo(n - 2) + fibo(n - 1); } int main() { int i; for (i = 1; i <= 20; i++) { printf("%d\t", fibo(i)); if (i % 10 == 0) { printf("\n"); } } }