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