搜索资源列表
-
0下载:
用递归的方法编写函数求Fibonacci级数的源程序-using recursive function method for the preparation of the source Fibonacci Series
-
-
0下载:
已知斐波那契数列的定义:F(1)=1,F(2)=1,F(i)= F(i-1)+ F(i-2) (i>=3),编写求该数列前n项的子程序
实现了输入一个数,然后将计算的结果保存在存储器中-Known Fibonacci sequence definition: F (1) = 1, F (2) = 1, F (i) = F (i-1)+ F (i-2) (i> = 3), preparation for the series before the n of the subrout
-
-
0下载:
利用虚函数手段,按照3种不同的计算方法来求出Fibonacci数列的第n项(的具体项值)并输出。具体地说,可通过在基类baseCla及其派生类fib1Cla、fib2Cla和fib3Cla中说明如下的同一个虚函数“virtual double fib(int n) ”,来实现求Fibonacci数列第n项值并返回的3种不同求解方法。例如,可设计并使用已经在第4和第5章的练习中所实现的求解方法:简单变量“数据平移”法、使用数组的实现法以及使用递归函数的实现法。-The use of virtual
-
-
0下载:
我大一时候的作业,实现了以下功能:
用16位8086汇编语言编写下列程序之一:
a) 两矩阵相加
b) 求Fibonacci数列
c) 输入一个正整数n, 输出1-n之间的所有素数
d) 矩阵相乘
e) 把一个十进制小数转换成IEEE754格式并输出的程序,
要求从键盘输入一个十进制小数,最后在在屏幕上输出IEEE754格式二进制码的序列.-When my freshman year of operations, realization of the fol
-
-
0下载:
Fibonacci数列的实现,用汇编语言完成。里面有完整的代码和一些小结体会和总结。还有截图等-Implementation of Fibonacci series, complete with assembly language. Which has the complete code and summary of experience and lessons. There are screenshots, etc.
-
-
0下载:
用汇编语言求解斐波拉契数列前99位的数值-Assembly language for solving the numerical series before the Feibolaqi 99
-
-
0下载:
汇编 菲波那契数列
include irvine32.inc
原理:f3=f2+f1
.data
str1 byte "请输入所求的菲波那契数列的位数:",0
str2 byte "此程序中菲波那契数列最大位置:",0
j dword 2 求最大位置
f1 dword 1,0,0 用3个32位表示一个96位
f2 dword 1,0,0 用3个32位表示一个96位
m dword ?
.code
main proc
mov
-
-
0下载:
program for calculates the Fibonacci series
-