标签:style inpu family end while pac ret ccf round
program description
有一头母牛,它每年年初生一头小母牛。每头小母牛从第四个年头开始,每年年初也生一头小母牛。请编程实现在第n年的时候,共有多少头母牛?
#include<iostream>
using namespace std;
int main()
{
int n,a[60];
while (cin >> n&&n)//输入n&&n表示n不等于零
{
a[1] = 1;
a[2] = 2;
a[3] = 3;
a[4] = 4;
for (int i = 5; i < 60; i++)
a[i] = a[i - 1] + a[i - 3];//当年的牛的数量等于去年牛的数量加上去年可以生小母牛的母牛的数量,而去年可以生小母牛的数量等于三年前的母牛的数量
cout << a[n] << endl;
}
return 0;
}
标签:style inpu family end while pac ret ccf round
原文地址:http://www.cnblogs.com/ChenKun1997/p/6817080.html