string str;
cin >> str;
// 대문자 변환
for (int i = 0; i < str.size(); i++) {
str[i] = toupper(str[i]);
}
cout << str << endl;
// 소문자 변환
for (int i = 0; i < str.size(); i++) {
str[i] = tolower(str[i]);
}
cout << str;
'C++' 카테고리의 다른 글
C++ - map 요소 접근 방법 (0) | 2025.01.16 |
---|---|
C++ - lower_bound & upper_bound (0) | 2025.01.11 |
C++ - 알고리즘 문제 풀이에 유용한 bits/stdc++.h 헤더파일 (0) | 2024.12.31 |
C++ - cin.ignore() (입력버퍼 초기화) (0) | 2024.12.31 |
C++ - 벡터 중복 값 제거 (0) | 2024.12.29 |