发布网友
共2个回答
热心网友
内部函数
#include<stdio.h>自定义函数
热心网友
if(ch>="0" && ch<="9")
if(ch>=48 && ch<=57)
if((ch-'0')>=0 && (ch-'0')<=9)