감동, 마음이 움직이는 것
[c++] Max Min values of any variable type 본문
Tips (Utility, Computer Language, and etc.)
[c++] Max Min values of any variable type
Struggler J. 2016. 10. 6. 18:58#include <limits>
double dMax = std::numeric_limits<double>::max();
double dMin = std::numeric_limits<double>::min();
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[n sphere] spherical coordinates (0) | 2016.10.27 |
---|---|
[Crank-Nicolson method/Tridiagonal matrix algorithm] (0) | 2016.10.13 |
[c++] Infinite precision and FP Exceptions (0) | 2016.10.06 |
[Linux] sort the files from the modification time ls -lt (0) | 2016.10.05 |
Euler method 정리 (0) | 2016.10.03 |