C++에서 오른쪽 정렬을 하려면 다음과 같이 하면 된다.
[ex] BOJ 2439
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int N, a, b;
// 입력
cin >> N;
// 연산 및 출력
string s = "*";
for (int i=1; i<=N; i++) {
cout << right << setw(N) << s << "\n";
s += "*";
}
return 0;
}
iomanip
헤더 파일에 있는 함수로, 할당할 문자 수를 의미