1. 程式人生 > >啊哈C——學習6.4陶陶摘蘋果

啊哈C——學習6.4陶陶摘蘋果

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;
}