cout 출력 정렬하기

2019. 4. 14. 02:02알고리즘/암기

https://wndproc.tistory.com/entry/C-%EC%B6%9C%EB%A0%A5-%EC%A0%95%EB%A0%AC%ED%95%98%EA%B8%B0setw-seft-setprecision

 

#include <iostream>

using namespace std;

int mat[10][10];

int main(void) {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	// 우측 정렬
	cout.setf(ios::right);
	// 좌측 정렬
	// cout.setf(ios::left);

	for (int i = 0; i < 10; i++) {
		for (int j = 0; j < 10; j++) {
			cout << setw(3) << mat[i][j];
		}
		cout << '\n';
	}
	cout << '\n';
    
    	return 0;
}

'알고리즘 > 암기' 카테고리의 다른 글

string class 함수  (0) 2019.05.02
에라토스테네스의 체 시간복잡도  (0) 2019.04.29
원소를 많이 지우는 경우  (0) 2019.04.14
nth_element  (0) 2019.04.13
브루트포스와 dp  (0) 2019.04.09