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 str\n", n); return 0; }运行结果:
本文链接:http://task.lmcjl.com/news/16163.html