27441 2744번: 대소문자 바꾸기 - 관련 사이트: https://www.acmicpc.net/problem/2744 2744번: 대소문자 바꾸기 영어 소문자와 대문자로 이루어진 단어를 입력받은 뒤, 대문자는 소문자로, 소문자는 대문자로 바꾸어 출력하는 프로그램을 작성하시오. www.acmicpc.net 대문자는 소문자로, 소문자는 대문자로 변환하는 문제이다. cctype 에 내장되어 있는 함수를 사용하였다. 1) isupper : 대문자 여부 확인 2) tolower : 소문자로 변환 3) toupper : 대문자로 변환 #include #include using namespace std; int main() { string str; cin >> str; for (char& c : str) { if (isupper(c)) c = tol.. 2023. 6. 10. 이전 1 다음