搜索资源列表
-
0下载:
利用递归计算Fibonacci数列-recursive computation using Fibonacci Sequence
-
-
0下载:
里面包含了很多程序,包括斐波那契数列,还有很多一维数组和二维数组的最大,最小输出。-Which contains a lot of procedures, including the Fibonacci sequence, there are many one-dimensional array and two-dimensional array of maximum and minimum output.
-
-
0下载:
java 创建数组并在屏幕显示出输出斐波那契序列-java create array and display the output in the Fibonacci sequence
-
-
0下载:
运用java语言实现了Fibonacci数列:1,2,3,5,8-Using java language of the Fibonacci sequence: 1,2,3,5,8 ...
-
-
0下载:
计算银行利率;查询输入日期的后三天;输出Fibonacci数列;计算球体、圆柱体体积;计算输入字符数-Calculating interest rates three days after the date of the query input output the Fibonacci sequence computing sphere, cylinder volume calculate the number of input characters
-
-
0下载:
基本输入输出 编程实现Fibonacci数列, 继承和多态 编程绘制直线、各种矩形、各种椭圆以及多边形-Basic input-output programming Fibonacci sequence, inheritance and polymorphism programming to draw a straight line, all kinds of rectangles, ellipses, and polygons of various
-
-
0下载:
Fibonacci(斐波那契)序列的递归和非递归算法Java实现,水仙花数等问题。-Fibonacci (Fibonacci) sequence of recursive and non recursive algorithm implemented in Java, a few daffodils and other issues.
-
-
0下载:
应用程序中定义方法头如下所示的方法:
static int[] add(int[] x, int[] y)
static int[] multi(int[] x, int[] y)
add方法的功能是:把参数数组x和y(其元素个数相同)的每个元素相加,并作为返回数组的元素;multi方法的功能是:把参数数组x和y(其元素个数相同)的每个元素相乘,并作为返回数组的元素。在Java应用程序中使用这两个方法。
-Write a Java application, perform
-
-
0下载:
个人原创代码:编写Java Application程序,求Fibonacci序列的前n项,要求:
在main方法中定义一数组,数组的长度n为一final定义的常量,使用一单独方法,无返回值,参数为一数组,在方法中给数组赋予序列的值,在main方法中调用该方法,然后打印结果数组的内容。-The original code of the individual: write Java Application seeking the Fibonacci sequence of the first n
-
-
0下载:
求 Fibonacci 数列 任意输入符合要求的数字-Fibonacci sequence
-
-
0下载:
资料里的是Java的程序代码,有求n个奇数的和,输出给定范围的质数,阶乘的计算,输出前五个被3整除的数,用非递归的方法打印Fibonacci数列。-Data is the Java code, n odd and output demand given the scope of the prime numbers, the factorial calculation output five divisible by 3, non-recursive print the Fibonacci seq
-
-
0下载:
(1)编写一个矩阵操作类库,具体实现要求如下:
实现构造函数动态创建不同大小的二维矩阵m*n
实现函数完成两个矩阵的相加、求差与矩阵各个元素相乘运算;
实现函数可以得到矩阵中指定元素数值。
(2)Fibonacci数列是一个自然数数列,第1项和第2项均为1,从第3项开始,F(n)= F(n-1)+ F(n-2).定义一个数组,前两个元素初始化为Fibonacci数列的第1,2项,求出数列的前20项。-(1) the preparation of a matrix operati
-
-
0下载:
题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,
小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,
问每个月的兔子总数为多少?
这是一个菲波拉契数列问题-Title: Classical problem: There is one pair of rabbits, from the first three months after the birth of every month from birth to a pair of rabbits, bunni
-
-
0下载:
输入一个数据n,计算斐波那契数列(Fibonacci)的第n个值, 规律:一个数等于前两个数之和-Enter a data n, calculate the Fibonacci sequence (Fibonacci) the first n values, rule: a number equal to the sum of the previous two numbers
-
-
0下载:
关于斐波那契数列的几种计算方法,在JSP中的进行实现的是小于100的计算。-About several calculation methods of the Fibonacci sequence, implemented in JSP is less than 100.
-
-
0下载:
利用java语言进行菲波那切数列的编写,语言简洁易懂。-Use java language to write cut Fibonacci number sequence, the language is concise and easy to understand.
-
-
0下载:
递归调用产生斐波那契数列和循环产生斐波那契数列的效率的比对,输入要产生的斐波那契数列的位数-Recursive call produces Fibonacci sequence and cycling Fibonacci series comparing the efficiency of input to generate Fibonacci sequence of digits
-
-
0下载:
The Fibonacci Sequence is the series of numbers:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...
The next number is found by adding up the two numbers before it.
The 2 is found by adding the two numbers before it (1+1)
Similarly, the 3 is found
-
-
0下载:
通过使用JAVA程序,我们将学习Fibonacci序列,并在100中计算素数。-Through the use of the JAVA program, we will learn of Fibonacci sequence and calculate of prime Numbers within 100.
-
-
0下载:
JAVA递归实现斐波那契数列Recursive implementation of the Fibonacci sequence(Recursive implementation of the Fibonacci sequence)
-