Rust : codewars的Product of consecutive Fib numbers
TheFibonaccinumbers:Fn:0,1,1,2,3,5,8,13,21,34,55,89,144,233,…其中关系式有:F(n)=F(n-1)+F(n-2)withF(0)=0andF(1)=1.给定一个数,请试图找出其是否可以由其中的连续相邻TheFibonaccinumbers相乘而得;如果不能相乘而得,请找出其上边界值。写出productFib函数。举例:productFib