[Programmers] 가운데 글자 가져오기

프로그래머스 level1

Posted by kyoungIn on January 14, 2019

가운데 글자 가져오기

문제 링크 : (https://programmers.co.kr/learn/courses/30/lessons/12903)

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <string>
#include <vector>
#include <iostream>
using namespace std;

string solution(string s) {
    string answer = "";
    int slen = (int)s.length();
    int center = slen/2;
    if(slen%2){ //홀수
        answer = s[center];
    }
    else{   //짝수
        answer =s[center-1];
        answer +=s[center];
    }
    return answer;
}