![[C++] 백준 3단계 - 2438번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fs9W97%2Fbtr6bt9mY9f%2FAAAAAAAAAAAAAAAAAAAAAKpobFOYXasJPDi-FS_h9jJW6c3a_QbTyoTkg3WYJfRq%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1761922799%26allow_ip%3D%26allow_referer%3D%26signature%3D3L8mUo%252Bzux3PLAPU3A7xqCeNJRc%253D)
[C++] 백준 3단계 - 2438번 문제자료구조 & 알고리즘/BOJ2023. 3. 27. 00:35
      Table of Contents
        문제설명

소스코드
#include<iostream>
using namespace std;
int main()
{
	int input;
	cin >> input;
	for (int i = 1; i <= input; ++i)
	{
		for (int j = 0; j < i; ++j) cout << "*";
		if (i == input) break;
		else cout << endl;
	}
}'자료구조 & 알고리즘 > BOJ' 카테고리의 다른 글
| [C++] 백준 3단계 - 10952번 문제 (0) | 2023.03.27 | 
|---|---|
| [C++] 백준 3단계 - 2439번 문제 (0) | 2023.03.27 | 
| [C++] 백준 3단계 - 11022번 문제 (0) | 2023.03.26 | 
| [C++] 백준 3단계 - 11021번 문제 (0) | 2023.03.26 | 
| [C++] 백준 3단계 - 15552번 문제 (0) | 2023.03.26 | 
![[C++] 백준 3단계 - 10952번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FdrFqck%2Fbtr5PFYzNF3%2FAAAAAAAAAAAAAAAAAAAAAHjrl5tWKLIyqgB-McDdHO3Jk0liFTo75UPkqVo8KnNZ%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1761922799%26allow_ip%3D%26allow_referer%3D%26signature%3DQ8b7F%252Flj%252BHTEuX%252FDzLrJ%252B2F20F8%253D) 
                  ![[C++] 백준 3단계 - 2439번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbbOBry%2Fbtr5O9rNrRo%2FAAAAAAAAAAAAAAAAAAAAAMqr7WLaRtC9lLfYrfl-9_0uW9Ga_EQllkMxCkwLBqQt%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1761922799%26allow_ip%3D%26allow_referer%3D%26signature%3DKhr9hGoxt6tnmxUGUAhkB4z%252F7aM%253D) 
                  ![[C++] 백준 3단계 - 11022번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fn8tjc%2Fbtr5UlR49D2%2FAAAAAAAAAAAAAAAAAAAAAIx6JAySah-xJP83XQmvHRTzLjjPRh-reDrjI_eNrHX6%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1761922799%26allow_ip%3D%26allow_referer%3D%26signature%3DXaEcWX%252FWErvivIbT8N1M1DnDPTM%253D) 
                  ![[C++] 백준 3단계 - 11021번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FrzhL8%2Fbtr5QoorcS5%2FAAAAAAAAAAAAAAAAAAAAAG4qrXuhaNlN8BpsDD7ki0mqTk4er00RNF5_iPB5UkVo%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1761922799%26allow_ip%3D%26allow_referer%3D%26signature%3DbpoCH8EZitto2DBBIY4jcHx24T4%253D)