반응형
C에서는 printf는 출력서식을 직접 설정 해 주어야 함 → C++은 안 해도됨
출력의 세밀한 조정을 하고 싶다면 setw() 사용
헤더 : #include <iostream>
사용
setw(int num)
- 출력하는 데이터의 칸을 지정한 수 만큼 정렬 시켜줌.
사용법
std::cout<< std::setw(여백)<< "내용";
예제
#include <iostream>
#include <iomanip>
int main()
{
int count = 0;
std::cout << std::setw(6) << count << std::endl;
}
출력
→ 앞에 5칸 생기고 출력됨.
반응형