用C语言,从键盘输入一个字符,如果是大写字母,就转换成小写;如果是小写字母,就转换成大写;如果是其他字符原样保持并将结果输出
时间: 2024-11-15 19:31:46 浏览: 17
c语言将字符串中的小写字母转换成大写字母
在C语言中,你可以使用ASCII码值来进行字符大小写的转换。以下是一个简单的程序示例,它会提示用户输入一个字符,然后根据其ASCII值判断并转换大小写:
```c
#include <stdio.h>
#include <ctype.h> // 包含处理字符类型的功能
int main() {
char input;
printf("请输入一个字符:");
scanf("%c", &input); // 从键盘读取字符
if (isalpha(input)) { // 检查字符是否为字母(区分大小写)
if (islower(input)) { // 如果是小写字母
input = toupper(input); // 转换为大写
} else { // 如果是大写字母
input = tolower(input); // 转换为小写
}
}
printf("转换后的字符是:%c\n", input);
return 0;
}
阅读全文