将字符串中的大写字母转换为对应的小写字母c语言
时间: 2024-05-10 12:19:22 浏览: 107
可以使用C语言中的标准库函数tolower()将字符串中的大写字母转换为对应的小写字母。tolower()函数需要包含头文件<ctype.h>。
下面是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "Hello, World!";
int i = 0;
while(str[i]) {
str[i] = tolower(str[i]);
i++;
}
printf("%s", str);
return 0;
}
```
输出结果为:
```
hello, world!
```
相关问题
将字符串中所有大写字母转换为小写字母小写字母转换为大写字母c语言
#include <stdio.h>
int main() {
char str[] = "HeLLo WoRld"; // 原字符串
int i;
// 遍历字符串中的每个字符
for(i = 0; str[i] != '\0'; i++) {
if(str[i] >= 'a' && str[i] <= 'z') { // 如果是小写字母
str[i] = str[i] - 32; // 转换为大写字母
} else if(str[i] >= 'A' && str[i] <= 'Z') { // 如果是大写字母
str[i] = str[i] + 32; // 转换为小写字母
}
}
printf("转换后的字符串为:%s", str); // 输出转换后的字符串
return 0;
}
c语言将字符串中的大写字母转换为对应的小写字母
可以使用C语言中的标准库函数`tolower()`将字符串中的大写字母转换为小写字母。下面是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "HELLO WORLD";
int i;
for(i = 0; str[i]; i++){
str[i] = tolower(str[i]);
}
printf("转换后的字符串为: %s", str);
return 0;
}
```
输出结果为:
```
转换后的字符串为: hello world
```
在上面的代码中,我们使用了`tolower()`函数将字符串中的大写字母转换为小写字母。在循环中,我们遍历字符串中的每个字符,并调用`tolower()`函数将其转换为小写字母。最后打印出转换后的字符串。
阅读全文