赞
踩
斐波那契数列指的是这样一个数列 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233,377,610,987,1597,2584,4181,6765,10946,17711,28657,46368........
- #include<stdio.h>
-
- int main()
- {
- int i , f1=1, f2=1;
- for(i=1;i<=9; i++){
- int t = f1;
- f1=f2;
- f2=t+f2;
- printf("%d ",f2);
- }
- return 0;
- }
输出结果
2 3 5 8 13 21 34 55 89
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。