编辑代码

#include<stdio.h>
int main(){
    printf("请输入分别输入身高的英尺和英寸:");
    double foot;
    double inch;
    scanf("%lf %lf",&foot,&inch);
    printf("身高是%f.\n",((foot + inch / 12.0)* 0.3048));
    return 0;
}