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
반응형