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

搜索资源列表

  1. fib

    0下载:
  2. 定义:f0=f1=1, fn=fn-1+fn-2(n>=2)。{fi}称为Fibonacci数列。 输入n,求fn mod q。其中1<=q<=30000。 Input format: 第一行一个数T(1<=T<=10000)。 以下T行,每行两个数,n,q(n<=109, 1<=q<=30000)、 Output format: 文件包含T行,每行对应一个答案。
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:788
    • 提供者:John
  1. shiyan1

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

    • 发布日期:2017-04-05
    • 文件大小:7287
    • 提供者:
  1. fib

    0下载:
  2. fibonatchi assembly code explanation
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:81687
    • 提供者:hamid
  1. fib

    0下载:
  2. 此文件夹有两种代码 一为普通方法叠加 得出第n个斐波那契数 另一个用递归的方式得出-This folder there are two kinds of code to a draw for the general method of superposition of the first n-Fibonacci another way to draw recursive
  3. 所属分类:CSharp

    • 发布日期:2017-03-27
    • 文件大小:213650
    • 提供者:hocman
  1. fib

    0下载:
  2. fibonacci alghoritm in c-fibonacci alghoritm in c++
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:8662
    • 提供者:matciok
  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. fib

    0下载:
  2. Fibonacci Algorithm - Good Example
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:20062
    • 提供者:mkat
  1. fib

    0下载:
  2. Fibonacci Literate Haskell example
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:38278
    • 提供者:BTJ
  1. sumfib

    0下载:
  2. I am trying to write a program that uses a for loop to output the Fibonacci series to the number inputted. I have put the program I have so far, but am having trouble with getting the sum of all the terms Here are some examples of what the outpu
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:5852
    • 提供者:kumar
  1. fib

    0下载:
  2. 实现斐波那契数列求和及显示,分别输入要测试的次数,并输入要求和的前几项,屏幕上就能显示要求的和,并给你你要求的次数-Fibonacci series to achieve the sum and show, respectively, enter the number you want to test and enter the first few requirements and on the screen and can display requirements and give you t
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:877158
    • 提供者:sch
  1. rs232

    0下载:
  2. Fib plus data drivers source
  3. 所属分类:Button control

    • 发布日期:2017-04-05
    • 文件大小:208145
    • 提供者:denf
  1. Fib

    0下载:
  2. 斐波那契数列的测试驱动开发实例,包含测试代码和源代码-The Fibonacci series of test-driven development.
  3. 所属分类:CSharp

    • 发布日期:2017-12-01
    • 文件大小:6011
    • 提供者:许涛
  1. fk

    2下载:
  2. 1.分别写出下列函数的递归算法和迭代算法,并求出n=10时的函数值。  Fib(n)= n 当n=0或n=1 Fib(n-2)+Fib(n-1) 当n³ 2 2. 假设以带头结点的循环链表表示队列,并且只设一个指针指向队尾元素结点而不设头指针,试编写相应的队列初始化、入队列、出队列和判断队列状态的算法。  利用上述算法完成下面的各操作,并在每一操作后输出队列状态。  1)下列元素逐一入队:5,7,3,8,55 状态:5个元素  2)3个元素出队    状态
  3. 所属分类:Other systems

    • 发布日期:2014-11-03
    • 文件大小:51200
    • 提供者:mingren
  1. digui-Fibonacci

    0下载:
  2. 6、 计算Fibonacci级数 fib(1) = fib(2) = 1 fib(n) = fib(n-1) + fib(n-2) 分别编写递归和非递归的C++程序完成以下功能: (1) 提示用户输入整数n; (2) fib(n),并输出结果。 -Ppls fib (n-2) 6, calculated Fibonacci series fib (1) = fib (2) = 1 fib (n) = fib (n-1) to write recursive and non
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-11
    • 文件大小:522
    • 提供者:
  1. 06

    0下载:
  2. 用递归的方法编写函数求Fibonacci级数,公式为fib(n)=fib(n-1)+fib(n-2) fib(1)=fib(2)=1-Write recursive method the function evaluation Fibonacci series, the formula for fib (n) = fib (n-1)+fib (n-2) fib (1) = fib (2) = 1
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-29
    • 文件大小:238851
    • 提供者:julystar10
  1. Fibonachi

    0下载:
  2. console application for solving fibunatsi. set number to check the corresponded fib number!!! nice to have tool in c#
  3. 所属分类:CSharp

    • 发布日期:2017-05-12
    • 文件大小:2723324
    • 提供者:dudu
  1. fib

    0下载:
  2. Write a recursive function to obtain the first 25 numbers of a Fibonacci sequence. In a Fibonacci sequence the sum of two successive terms gives the third term. Following are the first few terms of the Fibonacci sequence: 1 1 2 3 5 8 13 21 34 5
  3. 所属分类:CSharp

    • 发布日期:2017-04-05
    • 文件大小:145669
    • 提供者:Yangyong
  1. FIBUserControl

    0下载:
  2. FIB User control component
  3. 所属分类:Driver Develop

    • 发布日期:2017-04-14
    • 文件大小:5211
    • 提供者:dionisioc
  1. fibo2

    4下载:
  2. 使用Logisim搭建一个根据输入序号x计算对应序号斐波那契数fib[x]的电路(输入序号0对应输出数0,输入序号1对应输出数1,输入序号2对应输出数1,以此类推)并提交。64个周期就能计算出32位无符号整数能表示的最大数位置上的斐波那契数的(最后32bit)-Use Logisim to construct a circuit that calculates the corresponding serial number fib [x] based on the input serial nu
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:4429
    • 提供者:小猪猪猪
  1. fib

    0下载:
  2. 定义Fib数列:1,1,2,3,5,8,13,… 1,1,2,3,5,8,13,… 求第N项除以2010 的余数(Define the Fib series: 1,1,2,3,5,8,13,... 1,1,2,3,5,8,13,... Find the remainder of item N divided by 2010)
  3. 所属分类:Windows编程

« 12 »
搜珍网 www.dssz.com