목차

  1. 환경
  2. 문제
  3. 접근법
  4. Library
  5. Code
  6. 정리
  7. Link

1. 환경

Editor: Microsoft Visual Studio Code
Compiler: C++20

2. 문제

Link1 BOJ2438

3. 접근법

알고리즘 분류

  • 구현

이중 for문의 대표적인 문제이다.

4. Library

bits/stdc++.h - Link2
(GNU C++ Standard Library Header - X)
(GCC Compiler Header - O)

5. Code

#include <bits/stdc++.h>

using namespace std;

int N;

void input();
void func();
void output();

int main(void)
{
    input();
    func();
    output();
}

void input()
{
    cin >> N;
}

void func()
{
    
}

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

6. 정리

for문 안쪽의 for문을 바깥쪽 for문의 반복을 담당하는 변수와
연관지어 처리하는 방법을 익힐 수 있었다.

1. BOJ2438 - 별 찍기 - 1
https://www.acmicpc.net/problem/2438
2. bits/stdc++.h
https://gcc.gnu.org/onlinedocs/gcc-4.8.0/libstdc++/api/a01541_source.html
3. Cplusplus.com
https://www.cplusplus.com/reference/