[C++] 프로그래머스 Level 2 : JadenCase 문자열 만들기

Kim Nahyeong·2022년 10월 25일
0

프로그래머스

목록 보기
31/38

#include <string>
#include <vector>

using namespace std;

string solution(string s) {
    string answer = "";
    
    answer += toupper(s[0]); // toupper : 소->대 tolower 대->소
    for(int i = 1; i < s.size(); i++){
        if(s[i - 1] == ' '){
            answer += toupper(s[i]);
        } else {
            answer += tolower(s[i]);
        }
    }
    
    return answer;
}
  • toupper : 소문자 -> 대문자
  • tolower : 대문자 -> 소문자

0개의 댓글