나무 숲
[C++] bool 출력 - boolalpha 본문
bool a = false; bool b = true;
일 때
cout<<a <<endl;
cout<<b <<endl;
하면
0
1
이 출력됩니다
true/false로 출력하고 싶을땐 if/else를 쓰기 귀찮기도 하죠
c++에서는 방법을 제공합니다
cout<<boolalpha<<a<<endl;
cout<<boolalpha<<b<<endl;
하면
false
true
로 출력됩니다.
728x90
반응형
'Career > 알고리즘 · 자료구조' 카테고리의 다른 글
[C/C++] #include<math.h>/#include<cmath> (0) | 2017.03.21 |
---|---|
[C++] 띄어쓰기/공백 포함한 문자열 입력받기 (0) | 2017.03.09 |
[C] 띄어쓰기/공백 포함한 문자열 입력받기 (1) | 2017.02.07 |
에라토스테네스의 체 Sieve of Eratosthenes (0) | 2017.02.02 |
[C++ STL] #include<deque> (0) | 2017.01.10 |
Comments