如何找到最近的斐波那契数列编号?

如何找到最近的斐波那契数列编号?,第1张

如何找到最近的斐波那契数列编号? 为什么这种方法行之有效

这是一种不需要先前计算的方法,因此对于 性能 以及在检查非常大的数字时非常有用。


程序
from math import *n = int(input("Enter a number:"))if sqrt(5*n**2+4)%1==0 or sqrt(5*n**2-4)%1==0:    print("Your number is a Fibonacci number!")else:    print("Your number is not a Fibonacci number.")    c = 0    while 1:        c += 1        if sqrt(5*(n+c)**2+4)%1==0 or sqrt(5*(n+c)**2-4)%1==0: print("%s is the closest Fibonacci number to your entry." % str(n+c)) break        if sqrt(5*(n-c)**2+4)%1==0 or sqrt(5*(n-c)**2-4)%1==0: print("%s is the closest Fibonacci number to your entry." % str(n-c)) break

说明:

如果(5 * n ^ 2 + 4)或(5 * n ^ 2-4 – 4)是一个理想平方,则n是斐波那契数。


程序输入/输出
Enter a number: 9999999999Your number is not a Fibonacci number.9999816735 is the closest Fibonacci number to your entry.Enter a number: 9999816735Your number is a Fibonacci number!



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5653656.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存