isdigit(int x)

来源:互联网 发布:上网代理软件 编辑:程序博客网 时间:2024/05/16 16:57
isdigit(int x)
{
if(x<='9'&&x>='0')         
return 1;x` 
else 
return 0;

 }