[C++] numeric_limits 클래스
numeric_limits 클래스
#include <iostream>
#include <cmath> // pow
// #include <limits> // 최대 최솟값
int main()
{
using namespace std;
short s = 1; // 2 bytes = 2 * 8bits = 16bits
// 부호 표현 때문에 -1, 0 표현 떄문에 -1을 한다
cout << pow(2, sizeof(short) * 8 - 1) - 1 << endl;
cout << numeric_limits<short>::max() << endl;
cout << numeric_limits<short>::min() << endl;
cout << numeric_limits<short>::lowest() << endl
<< endl;
s = 32767;
s = s + 1; // 32768
cout << s << endl; // overflow
s = numeric_limits<short>::min();
s = s - 1; // -32769
cout << s << endl; // overflow
return 0;
}
References
- std::numeric_limits
- 따라하며 배우는 C++
Author And Source
이 문제에 관하여([C++] numeric_limits 클래스), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@t1won/C-numericlimits-클래스저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)