문제 :
단어 s의 가운데 글자를 반환하는 함수, solution을 만들어 보세요. 단어의 길이가 짝수라면 가운데 두글자를 반환하면 됩니다.
제한사항 :
- s는 길이가 1 이상, 100이하인 스트링입니다.
입출력 예 :
s | return |
"abcde" | "c" |
"qwer" | "we" |
코드 :
#include <string>
#include <vector>
using namespace std;
string solution(string s) {
string answer = "";
int size=s.size();
if(size%2==0) answer=s.substr(size/2-1,2);
else answer=s[size/2];
return answer;
}
다시 한번 짚고 넘어가기:
-string 자르기:
string s="abcde";
cout << s.substr(2,3); //출력하면 cde
//2번째부터 3자리의 글자를 읽어온다.
도움이 된 글 :
myblog.opendocs.co.kr/archives/1334
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스/leve1/c++] 3진법 뒤집기 (0) | 2021.01.07 |
---|---|
[프로그래머스/level1/c++] 같은 숫자는 싫어 (0) | 2021.01.07 |
[프로그래머스/level1/c++]2016년 (0) | 2021.01.05 |
[프로그래머스/level1/c++]모의고사 (0) | 2020.12.31 |
[프로그래머스/level1/c++]K번째수 (0) | 2020.12.31 |