#include iostream #include Windows.h #include string using namespace std; int main( void ) { char x; cout " 请输入一个字符: " ; cin x; //利用ASCII码表中的字符排列规律进行字母的大小写转换 if (x = ‘ a ‘ x = ‘
#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; }