博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Lambda编写斐波那契数列
阅读量:5758 次
发布时间:2019-06-18

本文共 266 字,大约阅读时间需要 1 分钟。

还需要考虑溢出等问题,闲来无事写了写

Func
a = (arg1, arg2) => 0f;//initvar depth = 8;a = (lastNumber, currentNumber) => { if (depth <= 0) return currentNumber; depth--; return a(currentNumber, currentNumber + lastNumber); };var result = a(0, 1);

转载地址:http://mivkx.baihongyu.com/

你可能感兴趣的文章
Codeforces D - Ithea Plays With Chtholly
查看>>
CSS3---first-child或者nth-child(1) 不起作用的原因
查看>>
openstack libtray
查看>>
关于TreeView(CS/BS)解决方案
查看>>
顶帽变化(转载)
查看>>
如何学好C++语言(转)
查看>>
PTA基础编程题目集6-7 统计某类完全平方数 (函数题)
查看>>
计算20140215
查看>>
2014022101
查看>>
alertifyjs
查看>>
【笔记】句子中单词逆序输出
查看>>
ggplot2画图小试
查看>>
python 循环定时器
查看>>
初级 WINDOWS API C++语言版 编程(转)
查看>>
浏览器清除缓存
查看>>
FBX SDK在vs 2010下面的配置
查看>>
python3与python2的部分区别
查看>>
【BGP的基本配置】
查看>>
javascript之闭包深入理解(二)
查看>>
南京邮电大学java程序设计作业在线编程第五次作业
查看>>