/ Published in: C++
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#include "math.h" #define round(x) (x<0?ceil((x)-0.5):floor((x)+0.5)) //or #define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))