#include<stdio.h> #include<math.h> #include<string.h> # define N 255 int main() { char str[N]; scanf("%[^\n]",str);// 提供一种正则读入的方法 int res = 0; for(int i = 0; i < strlen(str); i++) { if(str[i] >= '0' && str[i] <= '9') res++; // printf("%c",str[i]); } printf("%d",res); }
0.0分
0 人评分
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:643 |
简单编码 (C++代码)(这里推荐用switch)浏览:999 |
兰顿蚂蚁 (C++代码)浏览:1225 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:939 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:511 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:539 |
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码)浏览:703 |
1025题解浏览:795 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2251 |
交换Easy (C语言代码)浏览:805 |