[C++] 프로그래머스 대소문자 바꿔서 출력하기
문제설명
영어 알파벳으로 이루어진 문자열 str이 주어집니다.
각 알파벳을 대문자는 소문자로 소문자는 대문자로 변환해서 출력하는 코드를 작성해 보세요.
풀이
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
cin >> str;
int len = str.length();
for (int i = 0; i < len; i++)
{
if (str[i] >= 65 && str[i] <= 90)
{
str[i] += 32;
}
else if (str[i] >= 97 && str[i] <= 122)
{
str[i] -= 32;
}
}
cout << str;
return 0;
}
Leave a comment