#include <iostream>
#include <stdio.h>
using namespace std;
int main() {
    char x;
    cout << "请输入一个字母:" << endl;
    cin >> x;

    if (x >= 'a' && x <= 'z') {
        x = x - 'a' + 'A';
    }
    else if (x >= 'A' && x <= 'Z') {
        x = x - 'A' + 'a';
    }
    cout << "转换后的字符为:" << x << endl;
    system("pause");
    return 0;
}

 

posted on 2022-08-13 15:38  wshidaboss  阅读(199)  评论(0编辑  收藏  举报