搜索资源列表
-
0下载:
这个是数学上非常有名的菲波那契数列,对于初学VC的人来说是个很有意思的小程序,一对兔子出生二个月后,每个月会生一对小兔子,小兔子从第二个月起也可以生一对新的小兔子,N个月后,共有多少对兔子?程序对学生成绩进行统计,并输出各科平均成绩。-very famous Fibonacci series, for the beginners VC is a very interesting small program, a month after the birth rabbits, each month
-
-
0下载:
This is a program that will let you calculate roots with the Quadratic formula (including complex roots), Factorial of a number, Fibonacci series (and Pascals Triangle still under construction).
-
-
0下载:
计算Fibonacci数列,用户输入第N项,得到该项的数值-Calculate the Fibonacci series, users enter the N to obtain the numerical
-
-
0下载:
打印出Fibonacci数列递归算法的相应原程序-Print out the Fibonacci series, the original recursive algorithm for the corresponding procedures
-
-
0下载:
求斐波那契数列,但是操作者要给出最终所要求的数-Demand Fibonacci series, but the operator to give the required number of final
-
-
0下载:
利用递归算法计算斐波那契数列的n项的值,-Recursive algorithm to calculate the Fibonacci series, the value of n items
-
-
0下载:
斐波那契数列 递归调用,主要用于了解递归用法-The Fibonacci series recursive calls, mainly used to understand recursion usage
-
-
0下载:
The fibonacci series in C
-
-
0下载:
斐波那契数列(Fibonacci sequence),又称黄金分割数列、因数学家列昂纳多·斐波那契(Leonardoda Fibonacci)以兔子繁殖为例子而引入,故又称为“兔子数列”,指的是这样一个数列:1、1、2、3、5、8、13、21、34、……在数学上,斐波纳契数列以如下被以递归的方法定义:F(0)=1,F(1)=1, F(n)=F(n-1)+F(n-2)(n>2,n∈N*)在现代物理、准晶体结构、化学等领域,斐波纳契数列都有直接的应用,为此,美国数学会从1963年起出版了以《斐
-