Bomb Kirby Running
Cat Life - GT-K
2046번 스탬프 찍기

2023. 3. 17. 09:04SWEA

Problem Solving - Level 1 - 스탬프 찍기

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QKdT6AyYDFAUq&categoryId=AV5QKdT6AyYDFAUq&categoryType=CODE

#include <iostream>
using namespace std;
int main()
{
    int N;
    cin>>N;
    for(int i=0;i<N;i++)
    {
        cout<<"#";
    }
    return 0;
}

'SWEA' 카테고리의 다른 글

2050번 알파벳을 숫자로 변환  (0) 2023.03.20
2047번 신문 헤드라인  (0) 2023.03.20
2043번 서랍의 비밀번호  (0) 2023.03.17
2029번 몫과 나머지 출력하기  (0) 2023.03.17
2027번 대각선 출력하기  (0) 2023.03.17