본문 바로가기
카테고리 없음

[프로그래머스] 가운데 글자 가져오기

by 뽀도 2018. 7. 22.



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class Solution {
    public string solution(string s) {
        string answer = "";

         bool rst = s.Length % 2 == 0 ? true : false;
                int idx = s.Length / 2;

                if (rst == true) // 짝수
                {
                    answer = s.Substring(idx-1,2);
                }
                else // 홀수 
                {
                    answer = s.Substring(idx,1);
                }

        return answer;
    }
}


반응형

댓글