문제 링크: https://www.acmicpc.net/problem/7595

 

별찍기 문제입니다. 어렵지 않습니다

#include <bits/stdc++.h>
using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr), cout.tie(nullptr);

	int n;
	while (cin >> n) {
		if (n == 0) break;

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

	return 0;
}
반응형

'Online Judge > 백준' 카테고리의 다른 글

[백준][C++] 1083: 소트  (0) 2020.08.29
[백준][C++] 3300: 무어 기계  (0) 2020.08.28
[백준][C++] 9296: Grading Exams  (0) 2020.08.26
[백준][C++] 6965: Censor  (0) 2020.08.25
[백준][C++] 14720: 우유 축제  (0) 2020.08.24