首页
编程
java
php
前端
首页
编程
java
php
前端
程序怎么写才能运行,运行程序
递归即可
int fun (int t){ if (t==0||t==1) return 0; else return fun(t-1)+fun(t-2); }
点击展开全文