728x90
반응형
문제
코드
#include <iostream>
#include <string>
#include <vector>
using namespace std;
string solution(string myString) {
string answer = "";
for (char& c : myString)
{
if (c == 'a')
{
c = 'A';
}
else if (c != 'A')
{
c = tolower(c);
}
}
return myString;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 문자열이 몇 번 등장하는지 세기 (0) | 2023.11.19 |
---|---|
[프로그래머스/C++] Lv.0 특정한 문자를 대문자로 바꾸기 (0) | 2023.11.15 |
[프로그래머스/C++] Lv.0 배열에서 문자열 대소문자 변환하기 (0) | 2023.11.15 |
[프로그래머스/C++] Lv.0 소문자로 바꾸기 (0) | 2023.11.15 |
[프로그래머스/C++] Lv.0 대문자로 바꾸기 (0) | 2023.11.15 |