Return the closest int to the double argument.
The arithmetic is same with Excel, but not same with c/c++.
int nint2( double x )
the nearest integer to x
EX1
void nint2_ex1() { out_int("", nint2(-0.5)); // -1 }
nint
origin.h