Published in: C++
#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))
You need to login to post a comment.
C++ The Core Language
C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language. The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language.
yuconner on 08/03/06
1 person has marked this snippet as a favorite
Published in: C++
#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))
You need to login to post a comment.