c程序设计,请编写一个函数float fun(double h ),函数的功能是对变量h中的值保留

2024-12-01 10:52:19
推荐回答(1个)
回答1:

#include
float fun(double h){
    return (int)((h+0.005)*100)/(float)100;
}
int main(void){//测试一下……
    printf("%.2f  %.2f\n",fun(0.123456),fun(567.34579));
    return 0;
}