文件名称:2014053082053

  • 所属分类:
  • 其他小程序
  • 资源属性:
  • [Text]
  • 上传时间:
  • 2014-05-30
  • 文件大小:
  • 1kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • 刘*
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

程序1】 

题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月        后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?  1.程序分析:  兔子的规律为数列1,1,2,3,5,8,13,21....  2.程序源代码:  main()  {  long  f1,f2   int  i   f1=f2=1  

for(i=1 i<=20 i++) 

  {  printf(" 12ld  12ld",f1,f2)  

      if(i 2==0)  printf("\n") /*控制输出,每行四个*/        f1=f1+f2   /*前两个月加起来赋值给第三个月*/        f2=f1+f2   /*前两个月加起来赋值给第三个月*/    }  } 

-Program 1] Topic: classical problem: a pair of rabbits, from the first three months after birth month, a pair of rabbits are born, grow a small rabbit to the first month and three months after the birth of a pair rabbit, hare, if not death, the total number of rabbits asked how much per month? 1 Program analysis: the law of the rabbit number of columns 1,1,2,3,5,8,13,21 .... 2 source code:. Main () {longf1, f2  inti f1 = f2 = 1 for (i = 1 i < = 20 i++) {printf ("  12ld 12ld" , f1, f2) if (i 2 == 0) printf (" \ n" ) /* Control output per line four*/f1 = f1+f2 /* add up to two months before the assignment to a third Month*/f2 = f1+f2 /* two months before the first three months of assignment to add* /}} =============== ======================
(系统自动生成,下载前可以参看下载内容)

下载文件列表





2014053082053.txt

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org