编写一个函数,将字符串中的小写字母转换为大写字母,主函数输入字符串并输出结
时间: 2024-02-15 15:02:24 浏览: 106
字符串基本操作-复制,连接,比较等
您好!以下是将字符串中的小写字母转换为大写字母的函数,您可以将其加入到您的程序中:
```c++
#include <iostream>
#include <cstring>
using namespace std;
void toUpper(char *str) {
int len = strlen(str);
for (int i = 0; i < len; i++) {
if (str[i] >= 'a' && str[i] <= 'z') {
str[i] -= 32;
}
}
}
int main() {
char str[100];
cout << "请输入字符串:" << endl;
cin.getline(str, 100);
toUpper(str);
cout << "转换后的字符串为:" << endl;
cout << str << endl;
return 0;
}
```
在该程序中,toUpper() 函数用来将字符串中的小写字母转换为大写字母。该函数的参数为 char 类型的指针,表示要转换的字符串。函数中,我们使用了 for 循环遍历字符串中的每一个字符,判断并转换小写字母。其中,小写字母的 ASCII 码范围为 97-122,大写字母的 ASCII 码范围为 65-90,它们的 ASCII 码差值为 32,因此将小写字母的 ASCII 码减去 32 就可以得到相应的大写字母的 ASCII 码。最后,我们在主函数中读入字符串,调用 toUpper() 函数进行转换,并输出转换后的字符串。
希望能够帮到您!
阅读全文