728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; class Solution { private static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); private static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); public static void main(String[] args) throws IOException { long input = br.read()-48; for(int i=0; i<input; i++){ System.out.print("#"); } } } | cs |
'알고리즘 풀이 > SWEA' 카테고리의 다른 글
[SWEA][JAVA] 2029. 몫과 나머지 출력하기 (0) | 2021.06.14 |
---|---|
[SWEA][JAVA] 2043. 서랍의 비밀번호 (0) | 2021.06.13 |
[SWEA][JAVA] 2047. 신문 헤드라인 (0) | 2021.06.13 |
[SWEA][JAVA] 2050. 알파벳을 숫자로 변환 (0) | 2021.06.13 |
[SWEA][JAVA] 2056. 연월일 달력 (0) | 2021.06.06 |