#include<stdioh>
void main()
{
float hf,hm,h;
char sex,sports,diet;
printf("Please type in the sex(M/F):");
scanf("%c",&sex);
printf("Please type in the height of father:");
scanf("%f",&hf);
printf("Please type in the height of mother:");
scanf("%f",&hm);
printf("Do sports(Y/N):");
getchar(); //没特别的意思,只是消除回车键的影响
scanf("%c",&sports);
printf("Have a diet(Y/N):");
getchar(); //没特别的意思,只是消除回车键的影响
scanf("%d",&diet);
if('m'==sex||'M'==sex)
h=(hf+hm)054;
else
h=(hf0923+hm)/2;
if(('y'==sports||'Y'==sports)&&('y'==diet||'Y'==diet))
h=(1+002+0015)h;
else if('y'==sports||'Y'==sports)
h=(1+002)h;
else if('y'==diet||'Y'==diet)
h=(1+0015)h;
else
h=h;
printf("The height of the boy is %f\n",h);
}
以上就是关于c语言的一道题,画流程图,该程序用于计算小孩身高。(画出流程图、粘贴代码和程序结果)全部的内容,包括:c语言的一道题,画流程图,该程序用于计算小孩身高。(画出流程图、粘贴代码和程序结果)、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)