为什么输出结果为0??(用的是dev c++)

新手上路,请多包涵

include <stdio.h>

int main()
{

char sex;
char sports; 
char diet;
float faheight;
float moheight;
float myheight;
printf("Are you (g)or(b)?");
scanf("%ls", &sex);
printf("喜欢体育锻炼(y)or不喜欢(n)");
scanf("%ls", &sports);
printf("有良好的卫生习惯(y)or(n)");
scanf("%ls", &diet);
printf("你父亲的身高");
scanf("%f", &faheight);
printf("你母亲的身高");
scanf("%f", &moheight);
if(sex=='b'||sex=='B')
{
    myheight=((faheight+moheight)*0.54);
}
if(sex=='g'||sex=='G')
{
    myheight=((faheight*0.923+moheight)/2.0);
}
if(sports=='y'||sports=='Y')
{
    myheight=(myheight*(1+0.02));    
}
if(diet=='y'||diet=='Y')
{
    myheight=(myheight*(1+0.015));    
}
printf("Your future height will be %.2f(cm)\n",myheight);
return 0;

}

阅读 2.4k
2 个回答
新手上路,请多包涵

不是很懂,是直接在"%ls"后面加=> "%c"吗??

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题