递归解法
2024-11-09 22:42:44
发布于:广东
1阅读
0回复
0点赞
这个是递归的解法
#include <bits/stdc++.h>
using namespace std;
int tz(int n){
if (n==1 || n==2){
return 1;
}
return tz(n-1)+tz(n-2);
}
int main(){
int n;
cin >>n;
cout <<tz(n);
return 0;
}
这里空空如也
有帮助,赞一个