728x90
반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Solution { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); for(int i=0;i<n;i++) { System.out.printf("%s","#"); } } } | cs |
728x90
반응형
'알고리즘 > SWEA' 카테고리의 다른 글
2029. 몫과 나머지 출력하기.D1 (0) | 2022.02.05 |
---|---|
2043. 서랍의 비밀번호. D1 (0) | 2022.02.05 |
2047. 신문 헤드라인.D1 (0) | 2022.02.05 |
2050. 알파벳을 숫자로 변환.D1 (0) | 2022.02.05 |
2056. 연월일 달력.D1* (0) | 2022.02.05 |