AC日记——统计数字字符个数 openjudge 1.7 01
01:统计数字字符个数
- 总时间限制:
- 1000ms
- 内存限制:
- 65536kB
- 描述
-
输入一行字符,统计出其中数字字符的个数。
- 输入
- 一行字符串,总长度不超过255。
- 输出
- 输出为1行,输出字符串里面数字字符的个数。
- 样例输入
-
Peking University is set up at 1898.
- 样例输出
- 4
- 思路:
- 大模拟,不解释;
- 来,上代码:
#include<cstdio> #include<string> #include<cstring> #include<iostream> #include<algorithm> using namespace std; int ans=0; char word[300]; int main() { gets(word); for(int i=0;i<300;i++) if(word[i]>='0'&&word[i]<='9') ans++; printf("%d\n",ans); return 0; }