[C언어/C++] std::showpos, std::noshowpos

1
2
3
4
5
6
7
#include <iostream>
using namespace std;
 
int main() {
    cout << “showpos: “ << showpos << 1 << ‘ ‘ << 2 << ‘ ‘ << 3 << ‘\n’
        << “noshowpos: “ << noshowpos << 1 << ‘ ‘ << 2 << ‘ ‘ << 3 << ‘\n’;
}
cs

음수가 아닌 정수 출력에서 더하기 부호 ‘+’ 표시를 활성화 하거나 비활성화는 코드이다.

위의 코드가 실행된 결과는

이와 같다.

관련글

제목 작성자 작성일