main
[C++ 공부] 7. 영어단어 복구 본문
"it 취업을 위한 알고리즘 문제풀이 (with C, C++) 코딩테스트 대비" 강의 문제 풀이 입니다.
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main(void)
{
string str;
getline(cin, str);
str.erase(remove(str.begin(), str.end(), ' '), str.end());
for (auto &item : str)
{
if ('A' <= item && item <= 'Z')
{
item += 32;
}
}
cout << str;
return 0;
}
[참고 자료]
728x90
'Algorithm' 카테고리의 다른 글
[C++ 공부] 9. 모두의 약수 (0) | 2022.01.31 |
---|---|
[C++ 공부] 8. 올바른 괄호 (0) | 2022.01.31 |
[백준 - 2935번] 소음 (0) | 2022.01.26 |
[백준 - 1181번] 단어 정렬 (0) | 2022.01.24 |
[백준 - 10828번] 스택 (0) | 2022.01.23 |
Comments