[BOJ/C++] 2438 별 찍기 - 1

mani·2023년 5월 18일
0

baekjoon_step

목록 보기
29/73

별을 찍는 문제 1

#include <iostream>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int  N;
	cin >> N;
	for (int i = 1; i <= N; i++) {
		for (int j = 0; j < i; j++) {
			cout << "*";
		}
		cout << "\n";
	}
}
profile
log

0개의 댓글