题解 | #统计每个月兔子的总数#

统计每个月兔子的总数

http://www.nowcoder.com/practice/1221ec77125d4370833fd3ad5ba72395

C++代码,递归方式。

#include <bits/stdc++.h>
using namespace std;

int get_total_count(int month) //返回值类型整形
{
    if (month == 1 || month == 2)//边界条件,及其返回值
        return 1;
    return get_total_count(month - 1) + get_total_count(month - 2);//表达式
}

int main() {
    int mon;
    while(cin>>mon) //本题有多组数据
    {
        cout<<get_total_count(mon)<<endl;
    }
    return 0;
}
全部评论

相关推荐

滴滴 后端 薪资n x(15-18),普遍15,3w签字费,12%公积金
点赞 评论 收藏
分享
邮小鼠:粤嵌的项目水的要死 来我们学校带过课程实习 项目名字是车机终端 实际上就是写了了个gui 还是老师把代码发给你你改改的那种
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务