[SWEA-D1] C++ 2046. 스탬프 찍기

민지·2023년 5월 20일
0

SWEA

목록 보기
10/23
post-custom-banner

주어진 숫자만큼 # 을 출력해보세요.
주어질 숫자는 100,000 이하다.

#include<iostream>
using namespace std;

int main(int argc, char** argv)
{
	int T;
	cin>>T;
	
    for(int i=0; i<T; i++)
    {
        cout << "#" ;
    }
	return 0;
}
profile
개발일지

0개의 댓글