只需一步,快速开始
需要三步,才能开始
只需两步,慢速开始
//产生某两个数之间的斐波那契数列 /* * File: main.cpp * Author: xuehaiyisu * * Created on 2011年9月5日, 23:21 */ #include <cstdlib> #include <iostream> using namespace std; int Fib(int n); int main(int argc, char** argv) { int min,max; cout<<"请输入数列区间"<<endl; cin>>min>>max; for(int i=min;i<=max;i++) { cout<<Fib(i)<<" "; } cout<<endl; system("pause"); return 0; } int Fib(int n) { if(n<2) return n; else return Fib(n-1)+Fib(n-2); }
使用道具 举报
联系我们|手机版|欧卡2中国 ( 湘ICP备11020288号-1 ) 复制应用客服QQ号,请添加QQ好友后沟通 936487697
GMT+8, 2024-11-25 18:59 , Processed in 0.032041 second(s), 7 queries , Redis On.
Powered by Discuz! X3.4
Copyright © 2001-2023, Tencent Cloud.