-
https://school.programmers.co.kr/learn/courses/30/lessons/12951
아이디어
문자열 처리 문제입니다 toupper, tolower 함수를 이용했습니다.
#include <string> #include <vector> using namespace std; string solution(string s) { string answer = ""; answer += toupper(s[0]); for(int i=1;i<s.size();i++){ if(s[i-1] == ' '){ answer += toupper(s[i]); continue; } answer += tolower(s[i]); } return answer; }
'알고리즘 > 프로그래머스' 카테고리의 다른 글
Programers 평균 구하기 (0) 2022.12.03 Programers 자릿수 더하기 / C++ (0) 2022.12.03 Programers 땅따먹기 / C++ (2) 2022.12.03 Programers 약수의 합 / C++ (0) 2022.12.03 Programers 할인 행사 / C++ (0) 2022.12.03 댓글