HzuWHF


私信TA

用户名:I7I08I9047

访问量:83350

签 名:

我RUN了

等  级
排  名 19
经  验 21266
参赛次数 13
文章发表 127
年  龄 3
在职情况 学生
学  校 贺州学院
专  业

  自我简介:

解题思路:

        简单搜素。

参考代码:

#include<bits/stdc++.h>
using namespace std;
int total, num;

void OPT(int now) {
	if (now == num)
		total++;
	if (now >= num)
		return;
	OPT(now + 1);
	OPT(now + 2);
}

int main() {
	cin >> num; OPT(0);
	cout << total;
}


 

0.0分

6 人评分

  评论区

  • «
  • »