Next: NOT, Previous: NEW_LINE, Up: Intrinsic Procedures
NINT — Nearest whole numberNINT(X) rounds its argument to the nearest whole number.
     RESULT = NINT(X)
     | X | The type of the argument shall be REAL. | 
INTEGER of the default kind.
               program test_nint
            real(4) x4
            real(8) x8
            x4 = 1.234E0_4
            x8 = 4.321_8
            print *, nint(x4), idnint(x8)
          end program test_nint
     
     | Name | Argument | Standard | 
| IDNINT(X) | REAL(8) | F95 and later |