Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 코테
- 구현
- 파이썬
- Class
- bit manipulation
- Counting
- java
- Math
- two pointers
- string
- implement
- Data Structure
- Stack
- dynamic programming
- Binary Tree
- greedy
- database
- Tree
- Matrix
- array
- geometry
- 코딩테스트
- SQL
- 자바
- hash table
- Binary Search
- simulation
- Number Theory
- sorting
- Method
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 반복해서 출력하기 본문
1. Input, Output, Example
2. Constraint
1) 1 ≤ str의 길이 ≤ 10
2) 1 ≤ n ≤ 5
3. Code
1) 첫 코드(2023/04/24)
import java.util.*;
import java.io.*;
public class Solution {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer token = new StringTokenizer(br.readLine());
String str = token.nextToken();
int n = Integer.valueOf(token.nextToken());
for(int i=0 ; i<n ; i++)
bw.write(str);
bw.flush();
bw.close();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 특수문자 출력하기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 대소문자 바꿔서 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] a와 b 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열 출력하기 (0) | 2023.04.24 |
[LeetCode/Easy] 1984. Minimum Difference Between Highest and Lowest of K Scores (0) | 2023.04.24 |