Elemental Module Intrinsic Function (Generic): Returns an integer value rounded according to the current rounding mode.
モジュール
USE, INTRINSIC :: IEEE_ARITHMETIC
result = IEEE_RINT (x)
x |
(Input) Must be of type REAL.
|
結果
The result type and kind is the same as x. The value of the result is x
rounded to an integer according to the current rounding mode. If the result value is zero, the sign is the same as x.
例
If the current rounding mode is IEEE_UP, the value of IEEE_RINT (2.2) is 3.0.
If the current rounding mode is IEEE_NEAREST, the value of IEEE_RINT (2.2) is 2.0.