[SWEA] D1.스탬프 찍기 (C++)

jhyunn·2024년 3월 2일
0

SWEA

목록 보기
10/12

2046. 스탬프 찍기

문제 링크

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

 
풀이
loop 활용

profile
https://github.com/Sungjeonghyun

0개의 댓글