50分求救
  • 板块P1255 数楼梯
  • 楼主liulechen
  • 当前回复2
  • 已保存回复2
  • 发布时间2024/11/20 18:10
  • 上次更新2024/11/20 20:09:28
查看原帖
50分求救
768259
liulechen楼主2024/11/20 18:10
#include<bits/stdc++.h>
using namespace std;
long long n;
int fei(int x){
	if(x<=2) return 1;
	return fei(x-1)+fei(x-2);
}
int main(){
	cin>>n;
	cout<<fei(n+1);
	return 0;
} 
2024/11/20 18:10
加载中...