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;
}
'Language > C++ & openGL' 카테고리의 다른 글
C++기초 함수 활용 3의 제곱수 (0) | 2019.01.08 |
---|---|
C++기초 함수호출 (0) | 2019.01.08 |
C++기초 세 개의 정수 중 가장 작은 값(최솟값) 구하기 (0) | 2019.01.08 |
C++기초 Variable sizeof, int double char (0) | 2019.01.08 |
C++ 기초 별 피라미드 Star pyramid, for while if 연습 (0) | 2019.01.08 |
댓글