C++进行字母大小写转换

#include <iostream>
#include <Windows.h>
#include <string>

using namespace std;

int main(void) {
    char x;

    cout << "请输入一个字符:";
    cin >> x;
   //利用ASCII码表中的字符排列规律进行字母的大小写转换
    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 @ 2019-08-17 22:19  你爱过大海我爱过你  阅读(5503)  评论(0编辑  收藏  举报