본문 바로가기
Computer Science/Coding Test

c++(cpp) 프로그래머스 - 코딩 테스트 : 핸드폰 번호 가리기

by hzyiunn 2022. 7. 28.
728x90
반응형

#include <string>
#include <vector>

using namespace std;

string solution(string phone_number) {
    string answer = "";
    for(int i = 0 ; i < phone_number.size() - 4 ; i++)
    {
        answer += '*';
    }
    for(int j = phone_number.size() - 4 ; j < phone_number.size(); j++)
    {
        answer += phone_number[j];
    }
    return answer;
}

 

728x90
반응형

댓글