码迷,mamicode.com
首页 > 编程语言 > 详细

母牛的故事(c++递归过不了)

时间:2020-01-13 22:02:56      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:非递归   rom   stream   时间   name   cout   tcp   tor   ret   

题目地址:https://www.dotcpp.com/oj/problem1004.html?sid=1755437&lang=1#editor

c语言写递归能过,c++递归过不了。

c++写非递归能过,时间慢。

 

#include<iostream>
using namespace std;
int a[100]={0};
int solve(int year)
{
    for(int i=1;i<=year;i++)
    {
        if(i<=4)
        {
            a[i]=i;
        }
        else
        {
            a[i]=a[i-3]+a[i-1];
        }
    }
    return a[year];
}


int main()
{
    int n;
    while(cin>>n && n!=0)
    {
        cout<<solve(n)<<endl;
    }
}

母牛的故事(c++递归过不了)

标签:非递归   rom   stream   时间   name   cout   tcp   tor   ret   

原文地址:https://www.cnblogs.com/duzetao/p/12189436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!