CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - calculate Fibonacci

搜索资源列表

  1. 1316-How-Many-Fibs

    0下载:
  2. HDU ACM 1316 Problem Descr iption Recall the definition of the Fibonacci numbers: f1 := 1 f2 := 2 fn := fn-1 + fn-2 (n >= 3) Given two numbers a and b, calculate how many Fibonacci numbers are in the range [a, b].
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2016-01-25
    • 文件大小:1024
    • 提供者:zzyazz
  1. 1029-Rabbit

    0下载:
  2. 中大oj(Sicily)1029的题目。这道题目主要是看清递归关系式而编即可。注意处理精度。本程序利用四位进位处理精度。-Problem The rabbits have powerful reproduction ability. One pair of adult rabbits can give birth to one pair of kid rabbits every month. And after m months, the kid rabbits can become adu
  3. 所属分类:Other systems

    • 发布日期:2017-03-26
    • 文件大小:1088
    • 提供者:冰淇淋
  1. jichu1

    0下载:
  2. Fibonacci数列是通过知道前两项算出后一项,依次计算下去而得到的一组数列;此道题使用简单变量“数据平移”方法来求出Fibonacci数列的第n项(的具体项值)并显示在屏幕上(正整数n通过键盘输入)。-Fibonacci series through to know the latter to calculate the first two, the calculation will be followed by a group of series This questions the u
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-24
    • 文件大小:37626
    • 提供者:chenchen
  1. BigInt_DoubleList-Fibonacci

    0下载:
  2. 本程序用来计算Fibonacci数列中任意一个位置的Fibonacci数-This procedure used to calculate the Fibonacci series in an arbitrary location Fibonacci number
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:152613
    • 提供者:武鹏
  1. how_many_fibs

    0下载:
  2. Recall the definition of the Fibonacci numbers: f1 := 1 f2 := 2 fn := fn-1 + fn-2 (n>=3) Given two numbers a and b, calculate how many Fibonacci numbers are in the range [a,b]. -Recall the definition of the Fibonacci numbers:
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-22
    • 文件大小:14217
    • 提供者:k
  1. Fibonacci

    0下载:
  2. 程序能够接收1~100之间的整数,根据接收的数值,计算其Fibonacci数,在屏幕上输出其值。Fibonacci数列的定义如下: Fib(1)=1 Fib(2)=1 Fib(n)=fib(n-2)+fib(n-1) -Program can receive an integer between 1 to 100, according to the received value, to calculate the Fibonacci number, the screen outp
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:658
    • 提供者:david
  1. Fibonacci

    0下载:
  2. 用3种不同的计算方法求Fibonacci数列的第n项,c++语言编写-With 3 different calculation method, to calculate Fibonacci series, the first n items, c++ language
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:867060
    • 提供者:梦竹2008
  1. qishixunyou

    0下载:
  2. 2. 编程序,使用如下所谓的简单变量“数据平移”方法来求出Fibonacci数列的第n项(的具体项值) 并显示在屏幕上(正整数n通过键盘输入):说明变量old1=1,old2=1,newItem;新的Fibonacci项newItem总是“距它最近”的前两项(old1与old2)的累加和。而后通过“old1=old2 old2=newItem ”进行所谓的“数据平移”。接着计算另一个新的Fibonacci项newItem,依次循环,直到求出数列的第n项时为止。 -2. A program
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:2450
    • 提供者:赵汉卿
  1. yuandai

    0下载:
  2. mp3解析,斐波那契数列,计算单词数,计算器,内存-mp3 resolution, the Fibonacci series, calculate the number of words, calculators, memory
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:2762
    • 提供者:wudi
  1. zuoye11

    2下载:
  2. 1.编写递归函数计算Fibonacci数列,能避免重复计算 输入:input.txt,仅包含一个整数n(0-90) 输出:程序应能检查输入合法性,若有错误,输出错误提示“WRONG”;否则输出F(n)。两种情况都输出一个回车(形成一个空行)。所有实例均应在30秒内输出结果。 提示:可用一数组保存Fibonacci数列,用一个特殊值表示还未计算出Fibonacci数,递归调用前先检查数组,若已计算,直接取用,不进行递归调用;若未计算,调用递归函数,计算完成后保存入数组。实际上,这
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-09
    • 文件大小:690
    • 提供者:张蕊
  1. lab_1

    0下载:
  2. 斐波那契数列计算,并计算每次执行斐波那契数列函数的执行时间,有递归和非递归两种算法,可以比较二者的执行效率。-Fibonacci number calculation and calculate the execution time of each Fibonacci series of executive function, there are two kinds of recursive and non-recursive algorithm can compare the efficien
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-23
    • 文件大小:228406
    • 提供者:smiliy777
  1. ex5

    0下载:
  2. C + + program to calculate the N-th member of the Fibonacci sequence and present the N-th member on the screen with the Fibonacci range. The number of members of the Fibonacci sequence N, is entered through the keyboard. Fibonacci retracement sequ
  3. 所属分类:Console

    • 发布日期:2017-04-17
    • 文件大小:107117
    • 提供者:A2LJ
  1. Delphi_230677

    0下载:
  2. Delphi裴波纳契数列求和实例,请输入要计算数字的前多少位.-Delphi Fibonacci series summation instance, enter a number to calculate how many before.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:5993
    • 提供者:LH78FZV
  1. Desktop

    0下载:
  2. 斐波那契数是0、1、1、2、3、5、8、13、21,用递归方法可以定义为F0=0,F1=1,Fn=F(n-1)+F(n-2)(n>=2,n∈N*),此程序作用为算出第n个斐波那契数的数值并输出(Calculate the n value and output Fibonacci number)
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:1024
    • 提供者:505爱夏
搜珍网 www.dssz.com