문제 설명
퓨쳐종합병원에서는 접수한 환자가 진료받을 병과에 따라 자동으로 환자 코드를 부여해 주는 프로그램이 있습니다. 환자 코드의 마지막 네 글자를 보면 환자가 어디 병과에서 진료를 받아야 할지 알 수 있습니다. 예를 들어 환자의 코드가 "_eye"로 끝난다면 안과를, "head"로 끝난다면 신경외과 진료를 보게 됩니다. 환자 코드의 마지막 글자에 따른 병과 분류 기준은 다음과 같습니다.
마지막 글자 | 병과 |
"_eye" | "Ophthalmologyc" |
"head" | "Neurosurgery" |
"infl" | "Orthopedics" |
"skin" | "Dermatology" |
환자의 코드를 나타내는 문자열 code를 입력받아 위 표에 맞는 병과를 출력하도록 빈칸을 채워 코드를 완성해 주세요. 위 표의 단어로 끝나지 않는다면 "direct recommendation"를 출력합니다.
제한사항
- 4 ≤ code의 길이 ≤ 20
- code는 영어 소문자와 숫자, 언더바("_")로 이루어져 있습니다.
풀이
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String code = sc.next();
String lastFourWords = code.substring(code.length()-4, code.length());
if(lastFourWords.equals("_eye")){
System.out.println("Ophthalmologyc");
}
else if(lastFourWords.equals("head")){
System.out.println("Neurosurgery");
}
else if(lastFourWords.equals("infl")){
System.out.println("Orthopedics");
}
else if(lastFourWords.equals("skin")){
System.out.println("Dermatology");
}
else{
System.out.println("direct recommendation");
}
}
}
'Coding Test > 프로그래머스[JAVA]' 카테고리의 다른 글
[프로그래머스 Lv0.] 340206번 [PCCE 기출문제] 2번 / 각도 합치기 (JAVA) (0) | 2024.11.12 |
---|---|
[프로그래머스 Lv0.] 250131번 [PCCE 기출문제] 3번 / 나이 계산 (JAVA) (0) | 2024.11.12 |
[프로그래머스 Lv0.] 250132번 [PCCE 기출문제] 2번 / 피타고라스의 정리 (JAVA) (0) | 2024.11.12 |
[프로그래머스 Lv0.] 181832번 정수를 나선형으로 배치하기 (JAVA) (0) | 2024.11.05 |
[프로그래머스 Lv0.] 181921번 배열 만들기 2 (JAVA) (0) | 2024.11.05 |