编写函数,判断某个给定字符是否为数字。
样例输入
9
样例输出
yes
#include<stdio.h>
int main(){
char c;
scanf("%c",&c);
if(c>='' && c<=''){
printf("yes");
return ;
}
else
return ;
}
#include<stdio.h>
int main(){
char c;
scanf("%c",&c);
if(c>='' && c<=''){
printf("yes");
return ;
}
else
return ;
}