#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]);
else
answer+=tolower(s[i]);
}
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[2] 최댓값과 최솟값 (0) | 2023.07.23 |
---|---|
[3] 최고의 집합 (0) | 2023.03.23 |
[3] 등굣길 (0) | 2022.10.09 |
[3] 단속 카메라 (0) | 2022.10.05 |
[3] 베스트 앨범 (0) | 2022.10.05 |