-
프로그래머스 Lv1 (가운데 글자 가져오기)프로그래머스 2019. 12. 12. 13:27
문제
풀이 문자열의 길이가 홀, 짝 인지 판단 후 1글자 혹은 2글자를 가져온다.
코드
#include <string> #include <vector> using namespace std; string solution(string s) { string answer = ""; if(s.length() % 2 == 0 ){ answer = s.substr(((s.length()/2)-1),2); }else{ answer = s.substr((s.length()/2),1); } return answer; }
'프로그래머스' 카테고리의 다른 글
프로그래머스 Lv2 (최대값, 최소값 구하기) (0) 2020.02.04 프로그래머스 Lv 1 (2016년) (0) 2020.01.06 프로그래머스 Lv2 (전화번호 목록) (0) 2019.12.16 프로그래머스 Lv 1 (두 정수 사이의 합) (0) 2019.12.12 프로그래머스 Lv1 (홀, 짝 구하기) (0) 2019.12.07