程序设计入门——C语言

C语言是古老而长青的编程语言,它具备了现代程序设计的基础要求

1 (0评价)

收藏
加入学习

授课老师

新加入学员

wnzyadmin

学员动态

    暂无动态
程序设计入门——C语言4
  • double  浮点型    输入%lf输出 %f使用  printf("请输入两个数字代表身高,比如:5尺7 请输入 5 7"); double foot; double inch; scanf("%lf %lf",&foot,&inch); printf("您的身高是%f米",((foot+inch/12)*0.3048));---左孟熊

    double  浮点型    输入%lf输出 %f使用  printf("请输入两个数字代表身高,比如:5尺7 请输入 5 7");

    double foot;

    double inch;

    scanf("%lf %lf",&foot,&inch);

    printf("您的身高是%f米",((foot+inch/12)*0.3048));

    ---左孟熊