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

c语言-生耗子

时间:2014-08-25 22:32:34      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:io   for   sp   on   c   c语言   print   bs   include   

/* 假设一对耗子每个月都可以生一对小耗子。小耗子生长3个月后,从第4个月开始也就能够生小耗子。

问:假设所有的耗子都不死的话,那么20个月后一共有多少只耗子? */

#include <stdio.h>

 

void main()

{  

  int old = 2,first = 0,second = 0,third = 0;

  int i= 0;  

  for(;i < 20;i++)

  {   

    old = old + third;

            third = second;   

            second = first;   first = old;

       }    

       printf("第20个月一共有%d只耗子!\n",old + first + second + third);    

}

/*心得:此题属于业务建模:

    0月    1月    2月    3月    4月    5月    6月... ...

老    2      2     2              2              4              6               8

1月    0      2              2              2              4              6               8

2月    0      0              2              2              2              4               6

3月    0      0              0              2              2              2               4

总数      2                4              6              8              12            18             26

 */

c语言-生耗子

标签:io   for   sp   on   c   c语言   print   bs   include   

原文地址:http://www.cnblogs.com/aitinghua/p/3935899.html

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