공부하기/백준

[Java] 백준 풀기 17863 - FYI

XEV 2023. 3. 13. 23:39

자바 백준 17863번

브론즈 4

https://www.acmicpc.net/problem/17863

 

17863번: FYI

In the United States of America, telephone numbers within an area code consist of 7 digits: the prefix number is the first 3 digits and the line number is the last 4 digits. Traditionally, the 555 prefix number has been used to provide directory informatio

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현, 문자열

 

 

 

 

 

문제 풀기

전화번호의 앞 세자리가 555 로 시작하는지 판단하는 문제이다.

주어진 입력을 String 으로 입력 받고 substring() 함수를 이용하여 앞 세개를 자른다.

잘라진 앞 세자리 번호를 equals() 함수를 통해 555 와 같은지 비교 판별하여 결과를 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
    
        Scanner sc = new Scanner(System.in);
        
        String inputNumber = sc.next();
        String subStrNumber = inputNumber.substring(0, 3);
//        System.out.println(subStrNumber);  // TEXT PRINT.
        
        if (subStrNumber.equals("555")) {
            System.out.println("YES");
        }
        else {
            System.out.println("NO");
        }

    }
}