编写一个函数,将字符串中的小写字母转换为大写字母,主函数输入字符串并输出结果。
时间: 2024-05-02 13:16:40 浏览: 116
实现一个函数,把一个字符串中的字符从小写转为大写。
3星 · 编辑精心推荐
以下是一个C++的示例代码:
```cpp
#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 << "请输入字符串:";
cin.getline(str, 100); // 使用getline获取带空格的字符串
toUpper(str);
cout << "转换后的字符串为:" << str << endl;
return 0;
}
```
首先定义了一个 `toUpper` 函数,该函数接收一个字符数组指针,遍历该字符串并将小写字母转换为大写字母。
然后在主函数中,使用 `cin.getline` 获取带空格的字符串,并调用 `toUpper` 函数将字符串转换为大写字母。最后输出转换后的字符串。
阅读全文