Programming Language/C, C++

반올림 매크로 - C++

MOLOKINI 2014. 5. 13. 22:57

쓸만한 반올림 매크로

 

매크로 디파인

#define RoundUP(x, dig) (floor((x) * pow(10, dig) + 0.5) / pow(10, dig))

'Programming Language > C, C++' 카테고리의 다른 글

static을 이해합시다  (0) 2014.05.13
디버깅용 __LINE__, __FILE__ 등등  (0) 2014.05.13
Cast - reinterpret_cast, static_cast, const_cast, dynamic_cast  (0) 2014.05.13
LPCTSTR, TCHAR, char  (0) 2014.05.13
struct, typedef  (0) 2014.05.13