在 C++ 中用于浮点数的 round()

round() for float in C++(在 C++ 中用于浮点数的 round())
本文介绍了在 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()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)