int isdigit(int c);
引數 c 表示要檢測的字元或者 ASCII 碼。#include <stdio.h> #include <string.h> #include <ctype.h> int main() { char str[50] = { 0 }; int i, len, n=0; gets(str); for (i = 0, len = strlen(str); i < len; i++) { if (isdigit(str[i])) { n++; } } printf("There are %d numbers in strn", n); return 0; }執行結果: