首页 > 代码库 > 对浮点数进行四舍五入处理的函数
对浮点数进行四舍五入处理的函数
英语不好, 见谅。
1 float myRound (float src, int idx) 2 { 3 //move idx numbers right of the point 4 //to the left 5 for (int i = idx; i--;) { 6 src *= 10; 7 } 8 9 //get left part of src10 float dest = static_cast<int>(src);11 12 //if the number behind the idx13 //are larger than 5, then article idx plus 114 if (src >= dest + 0.5) {15 dest += 1;16 }17 18 //right nuber back to home19 for (int i = idx; i--;) {20 dest /= 10;21 }22 return std::move (dest);23 }
对浮点数进行四舍五入处理的函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。