Hueestory

[2438] 별 찍기 - 1 (C++) 본문

PS(중단)/BOJ

[2438] 별 찍기 - 1 (C++)

히명 2024. 4. 25. 10:09
#include <iostream>
#include <algorithm>

using namespace std;

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

	int n; cin >> n;

	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= i; j++)
			cout << "*";
		cout << endl;
	}
	
	return 0;
}

 

1. 이중 for문을 사용해 별 출력

 

'PS(중단) > BOJ' 카테고리의 다른 글

[2475] 검증수 (C++)  (0) 2024.04.25
[2439] 별 찍기 - 2 (C++)  (0) 2024.04.25
[1330] 두 수 비교하기 (C++)  (0) 2024.04.25
[1152] 단어의 개수 (C++)  (0) 2024.04.25
[1008] A/B (C++)  (0) 2024.04.25
Comments