使用isdigit()函数检查用户输入

isdigit()函数接受一个参数。

isdigit(x)

如果参数x是一个数字,则isdigit()函数将返回一个true值; 否则,为0false值。

#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

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论