본문 바로가기

Algorithm/Implementation

(C++) - 백준(BOJ) 17863 : FYI

반응형

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

if문을 써보는 문제였습니다.

 

📕 풀이방법

📔 입력 및 초기화

문자열 s를 선언 후 입력받습니다.

 

📔 풀이과정

substr로 앞 3글자가 "555"인지 확인합니다.

 

📔 정답출력

자른 문자열이 "555"이라면 "YES"를 아니라면 "NO"를 출력합니다.


📕 Code

#include <bits/stdc++.h>
using namespace std;
string s;
int main(){
    cin >> s;
    if(s.substr(0,3) == "555") cout << "YES";
    else cout << "NO";
}