70 #include inline int iround(double x) { return (int)floor(x + ((x >= 0) ? 0.5 : -0.5)); } . 0