标题:问一个小问题
只看楼主
m1561842868
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2011-12-18
结帖率:50%
已结贴  问题点数:10 回复次数:2 
问一个小问题
古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?
1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21....

# include <stdio.h>
int main()
{
int a,b,c,i,h;
a=1;
b=1;
printf("please enter the month:");
scanf("%f",&i);
for(h=1;h<=i;)
{
c=a+b;
a=b;
b=c;
h++;
}
printf("the total number of rabits is :%f\n",c);
return 0;
}   

  为什么输出都是0????
搜索更多相关主题的帖子: 小兔子 include please 
2011-12-25 14:23
燃高
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:67
专家分:140
注 册:2011-12-13
得分:10 
#include <stdio.h>
main()
{
int a,b,c,i,h;
a=1;
b=1;
printf("please enter the month:");
scanf("%d",&i);
for(h=1;h<=i;)
{
   c=a+b;
   a=b;
   b=c;
  h++;
}
printf("the total number of rabits is :%d\n",c);
return 0;
}
2011-12-25 14:29
燃高
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:67
专家分:140
注 册:2011-12-13
得分:0 
你定义的是int 那为什么要用 %f呢 这个是float 要用%d.还有那个for循环最好是这样
for(h=1;h<=i;h++)
{
   c=a+b;
   a=b;
   b=c;
}
2011-12-25 14:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-358584-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.057962 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved