C++ 代码:将大写字母转换为小写
#include <iostream>
using namespace std;
int main() {
char uppercase;
cin >> uppercase;
// 将大写字母转换为小写字母
char lowercase = tolower(uppercase);
cout << lowercase << endl;
return 0;
}
原文地址: https://www.cveoy.top/t/topic/qvpO 著作权归作者所有。请勿转载和采集!