2046. 스탬프 찍기

호찌 Hozzi ·2022년 5월 18일
0

알고리즘

목록 보기
9/18
#include<iostream>

using namespace std;

int main(int argc, char** argv)
{
	int test_case;
	int T;
	cin>> T;
    
	for(test_case = 1; test_case <= T; ++test_case)
	{
		cout << "#"; 

	}
	return 0;//정상종료시 반드시 0을 리턴해야합니다.
}

반복문을 사용하여 #을 출력한다.

profile
코린이

0개의 댓글