编写代码,判断键盘输入的字符是数字、小写字母还是大写字母。 C语言
时间: 2024-12-17 10:38:50 浏览: 5
c语言将字符串中的小写字母转换成大写字母
在C语言中,你可以使用`ctype.h`头文件中的函数来完成这个任务。下面是一个简单的示例:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char input;
printf("请输入一个字符: ");
scanf("%c", &input);
if (isdigit(input)) { // 判断是否为数字
printf("%c 是一个数字.\n", input);
} else if (islower(input)) { // 判断是否为小写字母
printf("%c 是一个小写字母.\n", input);
} else if (isupper(input)) { // 判断是否为大写字母
printf("%c 是一个大写字母.\n", input);
} else {
printf("%c 既不是数字也不是字母.\n", input);
}
return 0;
}
```
这个程序会提示用户输入一个字符,然后分别检查它是否为数字(通过`isdigit`)、小写字母(通过`islower`)或大写字母(通过`isupper`)。如果都不满足,则表示输入的是其他特殊字符。
阅读全文