[백준/C++] 별 찍기 - 2_2439_B4

leeact·2023년 4월 19일
1

[백준/c++]

목록 보기
2/24
post-thumbnail

📝 문제

💻 코드

#include <iostream>
#include <string>
using namespace std;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);

	int n;
	cin >> n;

	for (int i = 1; i <= n; i++) {
		for (int j = n; j > i; j--) {
			cout << " ";
		}

		for (int k = 0; k < i; k++) {
			cout << "*";
		}
		cout << "\n";
	}

	return 0;
}

💡 Point

옛날 생각난다

1개의 댓글

comment-user-thumbnail
2023년 4월 20일

기초부터 충실한 모습 보기 좋습니다!✍(◔◡◔)

답글 달기