聚热点 juredian

胡东海:C#题目,用递归算法算1.1.2.3.5.8.13....第30个是多少

聂宁的回答:

private static int count=1; public int digui(int a,int b){ int c=a+b; count++; if(count <= 30){ digui(b,c); } return c; }

杨近川的回答:

private static int count=1; public int digui(int a,int b){ int c=a+b; count++; if(count <= 30){ digui(b,c); } return c; }

许伟的回答:

public static int Add(int i) { if(i<=0) return="" else="" i="">0 && i<=2) { return 1; } else { return Add(i-1)+Add(i-2); } }

王思远的回答:

f(x)=f(x-1)+f(x-2) 设f(0)=1 设f(1)=1 然后就好了 int f(x) { if(x==0||x==1)return 1; else return f(x-1)+f(x-2); } 没调试过^^

言艺的回答:

搜索建议:
热议

 数学模型

数学模型(英文:mathematical model),对于现实世界的某一特定对象,为了某个特定的目的,通过一些必要的假设和简化后所作的数学描述。利用模型,通过...(展开)

热议

 李佳琦的直播怎么样?

评价主播卖货好不好,不应该单单只看人气,还应该考量业务能力水平以及应对危机事件的公关能力。李佳琦是从直播自己试色口红开始,对彩妆非常了解,在彩妆方面业务能力是很...(展开)

热议

 莱斯利·尼尔森

莱斯利·尼尔森(Leslie Nielsen 1926年2月11日-2010年11月28日),出生于加拿大萨斯喀彻温省里贾纳,好莱坞传奇喜剧明星。二战末期,为了...(展开)