Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the decimal rounding function of C++?

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of what the C++ decimal rounding function is, the content is detailed and easy to understand, the operation is simple and fast, and it has a certain reference value. I believe you will gain something after reading this C++ decimal integer function. Let's take a look.

In C++ 's cmath library, there are several decimal rounding functions ceil () floor () round () trunc, which we can choose according to different scenarios.

Ceil function: rounding up

Floor function: rounding down

Round function: rounding

Trunc function: rounding off the tail

Let's take a look at the characteristics of these functions in turn.

Ceil function

The ceil function is defined as follows. The function returns the smallest integer not less than the parameter arg, that is, rounding up.

Float ceil (float arg); double ceil (double arg)

We can use the following figure to describe it visually. The hollow indicates that the Abscissa Arg does not contain the value of the point, while the solid represents the value of the point.

Ceil function

An example:

# include # include int main () {/ / ceil std::cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report