为啥小数点后多了个1求大神指点

来源:5-14 综合练习

慕雪30012909

2022-12-30 18:44

#include <stdio.h>

float money(int s,int h)

{

    float cost;

    if(s<=3)

    {

        cost=14;

    }

    else 

    {

       if((h>=23)&&(h<=24)||(h<=5)&&(h>=0)) 

       {

           cost=14+(s-3)*2.3*1.2;

           

       }

       else

       {

           cost=14+(s-3)*2.3;

           

       }

       printf("小明打车花费:%f\n",cost);

       return cost;

    }

    

    

    

    

}

int main()

{

    float num=money(12,9)+money(12,18);

    printf("all the cost is:%f\n",num);

    return 0;

}


写回答 关注

1回答

  • MyZyy
    2024-08-14 16:11:53

    单精度浮点数的有效数字是6到7位。但是现在似乎主流认知已经变成了单精度浮点数的有效数字就是7位。

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题