2015年2月5日22:02:03
1.陶陶家的院子里有一颗苹果树,每到秋天树上就会结出10个苹果。苹果成熟的时候,陶陶就会跑去摘苹果。陶陶有个30cm高的板凳,当她不能直接用手摘到苹果是,就会踩到板凳上再试试。
现在一直10个苹果到地面的高度,以及陶陶把手伸直的时候能够达到的最大高度,请帮陶陶算一下她能摘到的苹果的数目。假设她碰到苹果,苹果就会掉下来。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int iHeight,iApple[10],iAppleIndex,iTotal;
printf("请输入陶陶的身高(100~120,包含100和120)\r\n");
scanf("%d",&iHeight);
printf("请输入10个苹果的高度(100~200,包含100和200)\r\n");
for(iAppleIndex = 0;iAppleIndex < 10;iAppleIndex ++)
{
scanf("%d",&iApple[iAppleIndex]);
}
for(iAppleIndex = 0,iTotal = 0;iAppleIndex < 10;iAppleIndex ++)
{
if(iApple[iAppleIndex] <= (iHeight + 30))
{
iTotal ++;
}
}
printf("%d\r\n",iTotal);
system("pause");
return 0;
}