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

统计每个月兔子的总数

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;
}
全部评论

相关推荐

一个非常好用的遍历方法
AomaYple:不是指针,是引用
点赞 评论 收藏
分享
offerboyyyy:之前看到降温完收到offer了的呢佬,可以签保底等
点赞 评论 收藏
分享
拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-29 12:19
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务