编程学习网为您整理以下代码实例,主要实现:使用isdigit()函数检查用户输入,希望可以帮到各位朋友。
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");
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!