728x90
반응형
문제는 다음과 같습니다.
https://www.acmicpc.net/problem/2675
import java.util.Scanner;
public class test {
public static void main(String[] args){
char[] ch;
Scanner sc = new Scanner(System.in);
//test변수는 반복하려는 횟수
int test = Integer.parseInt(sc.nextLine());
for( int t=1; t<=test; t++){
//ch 배열은 반복하려는 문자열
ch = sc.nextLine().toCharArray();
int num = Integer.parseInt(String.valueOf(ch[0]));
for(int i=2; i<ch.length; i++){
char a = ch[i];
for(int j=0; j<num; j++){
System.out.print(a);
}
}
System.out.println();
}
}
}
실행 결과입니다.
728x90
반응형
'프로그래밍 > 알고리즘' 카테고리의 다른 글
백준 알고리즘 for문 사용해보기!! (0) | 2017.08.31 |
---|---|
백준 알고리즘 2609번 : 최대공약수와 최소공배수 구하기! (0) | 2017.08.22 |
선택 정렬(Selection Sort) 와 버블 정렬 (Bubble Sort) (2) | 2017.08.04 |
백준 알고리즘 1929번 : 소수 구하기!! (0) | 2017.08.04 |
백준 알고리즘 1003번 피보나치 함수!! (0) | 2017.08.04 |