isdigit()函数接受一个参数。
isdigit(x)
如果参数x
是一个数字,则isdigit()
函数将返回一个true
值; 否则,为0
或false
值。
#include <stdio.h>
#include <ctype.h>
int main()
{
char cResponse = '/0';
printf("/nPlease enter a letter: ");
scanf("%c", &cResponse);
if ( isdigit(cResponse) == 0 )
printf("/nThank you/n");
else
printf("/nYou did not enter a letter/n");
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266623.html