刚开始学遇到的一个问题,为什么我把第二个printf 里的%f 换成%d 就没法输出正确结果了呢
如下图所示
#include <stdio.h>
int main()
{
printf("请分别输入身高的英尺和英寸,"
"如输入"5 7"表示5英尺7英寸:");
double foot;
double inch;
scanf("%lf %lf", &foot, &inch);
printf("身高是%f米。\n",
((foot + inch / 12) * 0.3048));
return 0;
}