首页上一页 1 下一页尾页 2 条记录 1/1页
不知道哪里错了
还有0人有此问题
发表在C语言答疑区
2018-05-23
《零基础学C语言》
是否精华
是
否
版块置顶:
是
否
#include<stdio.h>
#define HEG 0.54
float height(float father,float mother);
int main()
{
float father;
float mother;
float son;
printf("请输入父亲身高:/n");
scanf("%f1.73",&father);
printf("请输入母亲身高:/n");
scanf("%f1.53",mother);
son=height(father,mother);
printf("预测儿子身高:");
printf("%.2f\n",son);
return 0;
}
float height(float father, float mother)
{
float son =(father+mother)*HEG;
return son;
}