4 条题解
- 1
信息
- ID
- 1566
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- 递交数
- 89
- 已通过
- 52
- 上传者
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin >> s;
int num = 0;
for(int i = 0; i < s.length(); i++)
{
if(s[i] >= '0' and s[i] <= '9')
{
num++;
}
}
cout << num;
return 0;
}
极简代码:
#include <bits/stdc++.h>
char c;
int s;
int main()
{
while (std::cin >> c)
if (c >= '0' && c <= '9') s++;
std::cout << s;
return 0;
}