解题思路:
简单搜素。
参考代码:
#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 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:333 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:559 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1055 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:650 |
永远的丰碑 (C语言代码)浏览:698 |
简单的a+b (C语言代码)浏览:676 |
A+B for Input-Output Practice (II) (C语言代码)浏览:1043 |
兰顿蚂蚁 (C++代码)浏览:1160 |
【金明的预算方案】 (C++代码)浏览:873 |
最小公倍数 (C语言代码)浏览:1105 |