C语言初学 if-else语句判别在ASCII值中小于32的可控制符的类型
#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;
}
梦想要有的, 万一见鬼了呢?