用c语言编写,从键盘输入一个字符串,将其中的大写字母变小写字母,小写字母变大写字母,并输出
时间: 2024-11-30 20:16:26 浏览: 0
c语言将字符串中的小写字母转换成大写字母
5星 · 资源好评率100%
在C语言中,你可以使用标准库函数`ctype.h`提供的`islower()`、`isupper()`以及`toupper()`、`tolower()`来实现这个功能。下面是一个简单的示例程序:
```c
#include <stdio.h>
#include <ctype.h>
void swap_case(char *str) {
while (*str != '\0') {
if (islower(*str)) {
*str = toupper(*str);
} else if (isupper(*str)) {
*str = tolower(*str);
}
str++;
}
}
int main() {
char input[100];
printf("请输入一个字符串:");
fgets(input, sizeof(input), stdin); // 读取一行字符串,包括空格
input[strcspn(input, "\n")] = '\0'; // 去除换行符
swap_case(input);
printf("转换后的字符串:%s\n", input);
return 0;
}
阅读全文