c语言,将字符串中的小写字母转换为对应的大写字母 其他字符不变
时间: 2024-05-07 14:23:14 浏览: 114
将一字符串中的小写英文字母改成大写。-c语言习题
可以使用C语言中的字符数组和循环结构来实现将字符串中的小写字母转换为对应的大写字母,其他字符不变。可以使用标准库函数toupper()将小写字母转换为大写字母。
下面是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int i = 0;
printf("请输入一个字符串:");
scanf("%s", str);
while (str[i]) {
if (islower(str[i])) { // 判断是否为小写字母
str[i] = toupper(str[i]); // 将小写字母转换为大写字母
}
i++;
}
printf("转换后的字符串为:%s\n", str);
return 0;
}
```
运行示例:
```
请输入一个字符串:hello world
转换后的字符串为:HELLO WORLD
```
阅读全文