c程序设计,请编写一个函数float fun(double h ),函数的功能是对变量h中的值保留
c程序设计,请编写一个函数float fun(double h ),函数的功能是对变量h中的值保留
日期:2015-08-30 14:22:53 人气:1
#includefloat 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;}