SWEA

[SWEA] 스탬프 찍기

itsnot4me 2024. 9. 13. 19:17
import java.util.Scanner;
import java.io.FileInputStream;

class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
		int T;
		T=sc.nextInt();
		for(int test_case = 1; test_case <= T; test_case++)
		{
			System.out.print("#");
		}
	}
}

 

for문 쓰면 그냥 제일 쉬울 문제

'SWEA' 카테고리의 다른 글

[SWEA] 몫과 나머지 출력하기  (0) 2024.09.19
[SWEA] 서랍의 비밀번호  (1) 2024.09.16
[SWEA] 신문 헤드라인  (0) 2024.09.13
[SWEA] 알파벳을 숫자로 변환  (0) 2024.09.13
[SWEA] 연월일 달력  (0) 2024.09.13