#include<stdio.h> #include<ctype.h> int main() { int c; if(isdigit(c=getchar())) printf("%c",c); else printf("不是数字\n"); }