c++中,编写一个函数float fun(double h),函数的功能是对变量h中的值保留2位小数并对第3位进行四舍五入
c++中,编写一个函数float fun(double h),函数的功能是对变量h中的值保留2位小数并对第3位进行四舍五入
日期:2013-05-07 21:03:06 人气:1
#include
using namespace std;
//c++中,编写一个函数float fun(double h),函数的功能是对变量h中的值保留2位小数并对第3位进行四舍五入
float fun(double h){
int a=h*1000;
int b=h*100; //b为小数点前3位数
int c=a-10*b; //c为小数点第三位的数字
if(c>=5) b+=1;
else b=b;