round() for float in C++(在 C++ 中用于浮点数的 round())
问题描述
我需要一个简单的浮点舍入函数,因此:
I need a simple floating point rounding function, thus:
double round(double);
round(0.1) = 0
round(-0.1) = 0
round(-0.9) = -1
我可以在 math.h 中找到 ceil()
和 floor()
- 但不是 round()
.
I can find ceil()
and floor()
in the math.h - but not round()
.
它是否以另一个名称存在于标准 C++ 库中,还是丢失了??
Is it present in the standard C++ library under another name, or is it missing??
推荐答案
cmath C++11 起可用(根据http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3337.pdf)
It's available since C++11 in cmath (according to http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3337.pdf)
#include <cmath>
#include <iostream>
int main(int argc, char** argv) {
std::cout << "round(0.5): " << round(0.5) << std::endl;
std::cout << "round(-0.5): " << round(-0.5) << std::endl;
std::cout << "round(1.4): " << round(1.4) << std::endl;
std::cout << "round(-1.4): " << round(-1.4) << std::endl;
std::cout << "round(1.6): " << round(1.6) << std::endl;
std::cout << "round(-1.6): " << round(-1.6) << std::endl;
return 0;
}
输出:
round(0.5): 1
round(-0.5): -1
round(1.4): 1
round(-1.4): -1
round(1.6): 2
round(-1.6): -2
这篇关于在 C++ 中用于浮点数的 round()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中用于浮点数的 round()


基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04