double trunc(double x) { if (!finite (x)) return x; if (x < 0.0) return - floor (-x); else return floor (x); }
留言