编辑代码

#include <stdio.h>
int main () {
    //JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。 
    printf("请输入您的身高英尺");
    int foot;
    int inch;
    scanf("%d %d",&foot,&inch);
    printf("您的身高是%f米。/n",
    ((foot+inch/12.0)*0.3048));
    return 0;
}