解题思路:
注意事项:
参考代码:
#include <stdio.h>
int cowNum(int n);
int main()
{
int n;
while(scanf("%d", &n) && n)
printf("%d\n", cowNum(n));
return 0;
}
int cowNum(int n)
{
if(n <= 4)
return n;
int childCow1 = 1, childCow2 = 1, childCow3 = 1, momCow = 1;
for(int i = 5; i <= n; i++)
{
momCow += childCow3;
childCow3 = childCow2;
childCow2 = childCow1;
childCow1 = momCow;
}
return childCow1 + childCow2 + childCow3 + momCow;
}
0.0分
0 人评分
C语言训练-排序问题<1> (C++代码)浏览:632 |
求圆的面积 (C语言代码)浏览:1366 |
C语言训练-尼科彻斯定理 (C语言代码)浏览:509 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:606 |
WU-格式化数据输出 (C++代码)浏览:1312 |
用筛法求之N内的素数。 (C语言代码)浏览:685 |
哥德巴赫曾猜测 (C语言代码)浏览:2560 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:600 |
母牛的故事 (C语言代码)浏览:1045 |
矩阵乘方 (C语言代码)浏览:1079 |