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.
Htu/斐波那契数列.c

19 lines
242 B

#include<stdio.h>
int fib(int n)
{
if (n == 1 || n == 2)
return 1;
else
return fib(n - 1) + fib(n - 2);
}
int main()
{
int n;
scanf("%d", &n);
int i;
for (i = 1; i <= n; i++)
printf("%d ", fib(i));
return 0;
}