c语言身高预测
照着这个公式写应该没有问题吧?
这个公式能大概预测一下:
欧洲科学家的预测子女身高公式如下:
儿子成年身高(cm)=(父亲身高+母亲身高)×1.08/2
女儿成年身高(cm)=(父亲身高×0.923+母亲身高)/2
我国的身高预测公式,比用国外的公式预测误差小。
身高预测公式如下:(单位:厘米)
男孩身高=59.699+0.419×父亲身高+0.265×母亲身高
女孩身高=43.089+0.306×父亲身高+0.431×母亲身高
‘贰’ C语言 身高预测的问题
getchar(sport);应该是sport= getchar();
不用if判断会很麻烦,用了if判断更简单。
if(food=='y') Height *=0.015;
‘叁’ 大一c语言程序设计题目:预测身高,男生身高=(爸身高+妈身高)×0.54 女生身高=(爸身高×0.
#include<stdio.h>
intmain()
{
doubleheight=0;
intsex;
printf("请输入您的性别:1(男)2(女): ");
scanf("%d",&sex);
doubleheightOfFather;
doubleheightOfMother;
printf("请输入您父母的身高: ");
scanf("%lf%lf",&heightOfFather,&heightOfMother);
if(sex==1)height=(heightOfFather+heightOfMother)*0.54;
elseheight=(heightOfFather*0.92+heightOfMother)/2.0;
printf("请问您是否有良好的生活习惯1(有)0(没有) ");
inthave;
scanf("%d",&have);
height=height+have*height*1.5/100.0;
printf("请问您是否喜爱体育运动:1(喜欢)0(不喜欢) ");
intlike;
scanf("%d",&like);
height=height+like*height*2.0/100.0;
printf("您的身高应该是:%lf ",height);
return0;
}
请输入您的性别:1(男 ) 2(女):
1
请输入您父母的身高:
1.78 1.56
请问您是否有良好的生活习惯 1(有) 0(没有)
1
请问您是否喜爱体育运动: 1(喜欢) 0(不喜欢)
1
您的身高应该是:1.867267
dty@ubuntu:~$ ./a.out
请输入您的性别:1(男 ) 2(女):
2
请输入您父母的身高:
1.78 1.56
请问您是否有良好的生活习惯 1(有) 0(没有)
1
请问您是否喜爱体育运动: 1(喜欢) 0(不喜欢)
1
您的身高应该是:1.655238
‘肆’ C语言编程关于身高预测问题,请大神帮忙看看哪里错了急急急急!
#include<stdio.h>
void main()
{
char sex,sports,diet;
float faHeight,moHeight,chHeight = 0;
scanf("%c,%c,%c,%f,%f",&sex,&sports,&diet,&faHeight,&moHeight);
if(sex == 'M')
chHeight = (faHeight + moHeight)*0.54;
else if(sex == 'F')
chHeight = (faHeight*0.923+moHeight)/2;
if(sports == 'Y')
chHeight = chHeight * 1.02;
if(diet == 'Y')
chHeight = chHeight * 1.015;
printf("height = %f",chHeight);
}
手打不容易,你写的程序稍后给你分析,你先用我这个应急吧~~
‘伍’ C语言 已知父母身高预测孩子身高程序 求帮找错
#include<stdio.h>
intmain()
{
floatfaheight,moheight,a;
charsex,sport,habit;
printf("Pleaseinput:Father'sheight(space)Mother'sheight(cm) ");
scanf("%f%f",&faheight,&moheight);//%f
{
getchar();//接收' '
printf("IFTHEBABYISABOY?(yorn) ");
sex=getchar();
if(sex=='y')
a=(faheight+moheight)*1.0*0.54;
if(sex=='n')
a=(faheight*0.923+moheight)/2;
getchar();
}
{
printf("DOESHE/SHELIKESPORTS?(yorn) ");
sport=getchar();
if(sport=='y')
a=a*1.02;
if(sport=='n')
a=a*1.0;
getchar();
}
{
printf("DOESHE/SHEHAVEGOODHABITS?(yorn) ");
habit=getchar();
if(habit=='y')
a=a*1.015;
if(habit=='n')
a=a;
getchar();
}
printf("Height=%.2fcm",a);
return0;
}
‘陆’ c语言身高预测问题,如何修改这段代码才能与题目给的输出对上
#include<stdio.h>
intmain(){
doubleheight;
charsex,sports,diet;
doublefaheight,moheight;
while(scanf("%c",&sex)!=EOF){
getchar();
scanf("%lf%lf",&faheight,&moheight);//<---去掉逗号,保证数据读取正确!
switch(sex){
case'F':
height=(faheight*0.923+moheight)/2;
break;
case'M':
height=(faheight+moheight)*0.54;
break;
}
getchar();//<----不加这个,会导致后面读字符出错!
scanf("%c",&sports);
getchar();
switch(sports){
case'Y':
height=height*(1+0.02);
break;
case'N':
height=height;
break;
}
scanf("%c",&diet);
getchar();
switch(diet){
case'Y':
height=height*(1+0.015);
break;
case'N':
height=height;
break;
}
printf("%.2lf ",height);
}
return0;
}
‘柒’ c语言预测子女身高
#include<stdio.h>
intmain()
{
//c语言预测子女身高只用父母的身高,其它不管。
floatfq=0,mq=0,ez=0,nr=0;
printf("请输入父亲母亲身高:");
scanf("%f%f",&fq,&mq);
ez=(fq+mq)*0.54;
nr=((fq*0.9)+mq)/2.0;
printf("儿子%.2f女儿%.2f ",ez,nr);
return0;
}
请输入父亲母亲身高:173156
儿子177.66女儿155.85
Pressanykeytocontinue
‘捌’ 用C语言编程预测身高的毕业设计怎么做
每个做父母的都关心自己孩子成人后的身高,据有关生理卫生知识与数理统计分析表明:影响小孩成人后的身高的因素包括遗传,饮食习惯与体育锻炼等,小孩成人后的身高与其父母和身高和自身的性别密切相关.
设faHeight为其父身高,moHeight为其母身高
身高预测公式为:
男性成人时身高=(faHeight+moHeight)×0.54cm
女性成人时身高=(faHight×0.923+moHeight)/2cm
此外如果喜爱体育锻炼,那么可增加身高2%,如果有良好的卫生饮食习惯,那么可增加身高1.5%.
编程从键盘输入用户的性别(用字符型变量 ----存储,输入字符F表示为女性.输入字符M表示男性),父母身高用实型变量存储.faHight为其父身高,moHeight为其母身高.是否爱体育锻炼(用字符型变量sport存储,输入字符Y表示喜爱,输入字符N表示不喜爱)是否有良好的饮食习惯等条件(用字符型变量diet存储,输入字符Y表示良好,输入字符N表示不好)利用公给定公式和身高预测方法去对身高进行预测.
‘玖’ 大一c语言程序设计:预测身高,男生身高=(爸身高+妈身高)×0.54 女生身高=(爸身高×0.92
#include<stdio.h>
voidGetMess(char*sex,float*height)
{
charch1;
printf("%s是否有良好的生活习惯<YorN>:",sex);
while(scanf("%c",&ch1)!=1||!(ch1=='Y'||ch1=='y'||ch1=='N'||ch1=='n'))
{
printf("您的输入有误,请重新输入!!! ");
while((ch1=getchar())!=' ')
continue;
printf("%s是否有良好的生活习惯<YorN>:",sex);
}
getchar();
if(ch1=='Y'||ch1=='y')
{
*height=(*height)*1.015f;
}
printf("%s是否喜爱体育运动<YorN>:",sex);
while(scanf("%c",&ch1)!=1||!(ch1=='Y'||ch1=='y'||ch1=='N'||ch1=='n'))
{
printf("您的输入有误,请重新输入!!!");
while((ch1=getchar())!=' ')
continue;
printf("%s是否喜爱体育运动<YorN>:",sex);
}
getchar();
if(ch1=='Y'||ch1=='y')
{
*height=(*height)*1.02f;
}
}
intmain()
{
floatfather,mother,son,daughter;
printf("请分别输入爸爸身高和妈妈身高:");
scanf("%f%f",&father,&mother);
getchar();
son=(father+mother)*0.54f;
daughter=(father*0.92f+mother)/2;
GetMess("儿子",&son);
printf("儿子身高为%.2f ",son);
GetMess("女儿",&daughter);
printf("女儿身高为%.2f ",daughter);
return0;
}
‘拾’ c语言 预测身高小程序问题
你把scanf语句的%c改为%s