본문 바로가기
Language/C++ & openGL

C++기초 알파벳 대문자를 소문자로 소문자를 대문자로 변환 / 반복문

by javapp 자바앱 2019. 1. 8.
728x90

#include <iostream>

using namespace std;

int main()

{

char z;


cout << "대문자나 소문자 입력: ";

cin >> z;


if (z >= 'a' && z <= 'z')

{

z = z - 'a' + 'A';

}

else if (z >= 'A' && z <= 'Z')

{

z = z - 'A' + 'a';

}

cout << "변환된 문자는 " << z << "이다. " << endl;

}




반복문 사용​




#include <iostream>

using namespace std;

int main()

{

char z;


while (1)

{

cout << "대문자나 소문자 입력: ";

cin >> z;


if (z >= 'a' && z <= 'z')

{

z = z - 'a' + 'A';

}

else if (z >= 'A' && z <= 'Z')

{

z = z - 'A' + 'a';

}

else

break;


cout << "변환된 문자는 " << z << "이다. " << endl;

}


return 0;

}


댓글