2条回答 默认 最新
- CSDN专家-sinJack 2021-12-18 17:16关注解决 2无用
- CSDN专家-天际的海浪 2021-12-18 17:20关注解决 无用评论 打赏 举报 编辑记录
收起
#include<stdio.h>
float fun(double h){
long temp;
temp = (h*1000 + 5)/10;
return (float) temp/100;
}
int main(){
double h;
float result;
scanf("%lf",&h);
result = fun(h);
printf("k=%.2f \n",result);
return 0;
}
有帮助,请采纳
你题目的解答代码如下:
#include<bits/stdc++.h>
using namespace std;
float fun(double h)
{
return (int(h*100+0.5))/100.0;
}
int main()
{
double h;
cin >> h;
cout << fun(h);
return 0;
}
如有帮助,请点击我的回答下方的【采纳该答案】按钮帮忙采纳下,谢谢!
报告相同问题?