#include<stdio.h>
main()
{
char c;
printf("输入一个符号\n");
c=getchar();
if(c<32)
printf("该字符为可控制符\n");
else if(c>=‘0‘&&c<=‘9‘)
printf("该字符为数字\n");
else if(c>=‘A‘&&c<=‘Z‘)
printf("该字符为大写字母\n");
else if(c>=‘a‘&&c<=‘z‘)
printf("该字符为小写字母\n");
return 0;
}
时间: 2024-10-07 13:25:17