카테고리 없음

[C++] 백준 온라인 저지 2442

Emil :) 2020. 5. 14. 22:11
728x90
반응형

문제


코드


#include <iostream>
#include <string>
#include <vector>

using namespace std;
class solution {
public:
	solution();
};

solution::solution() {
	int n;
	cin >> n;
	for (int i = 1; i <= n; i++) {
		for (int j = n; j > i; j--) {
			cout << ' ';
		}
		for (int k = 1; k <= 2*i-1; k++) {
			cout << '*';
		}
		cout << '\n';
	}
}


int main() {
	solution s;
}

입출력문 단골문제.. 킹찍기..

 

결과


 

728x90
반응형