[백준] 2954. 창영이의 일기장
문제 링크
풀이 과정
input = input.replaceAll("apa", "a").replaceAll("epe", "e")
.replaceAll("ipi", "i").replaceAll("opo", "o").replaceAll("upu", "u");
다섯 개의 모음(a, e, i, o, u) 에 p를 붙이고 해당 모음을 하나 더 붙이는 규칙이므로, 위와 같이 각각 replaceAll
메소드를 반복해서 호출해줍니다.
코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
input = input.replaceAll("apa", "a").replaceAll("epe", "e")
.replaceAll("ipi", "i").replaceAll("opo", "o").replaceAll("upu", "u");
System.out.println(input);
}
}
댓글남기기