関数myround マニュアル
(The documentation of function
myround
)
Last Update: 2021/11/30
◆機能・用途
(Purpose)
実数値を四捨五入によって整数に丸める。
Round a real number to the closest integer.
◆形式
(Format)
#include <doublemath.h>
inline int myround(const double original)
◆引数
(Arguments)
original
丸めたい実数。
The real number to be rounded.
◆戻り値
(Return value)
originalを四捨五入した値。 実際にはmyfloor(original+0.5)により計算している。
The rounded value of
original
, calculated with
myfloor(original+0.5)
.
◆使用例
(Example)
double d=(1.0/3.0)∗7.5;
int i=myfloor(d);