int main(){ int c = getchar(); if(c >= '0' && c<='9') printf("%c 是数字\n",c); else printf("%c 是字符\n",c);}
判断ASCII码的范围就行