连字符串都不用了
2024-09-27 20:18:30
发布于:广东
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
char c;
int cnt=0;
while (cin >> c)
{
if (c>='0' && c<='9')
cnt++;
}
cout << cnt;
return 0;
}
这里空空如也
有帮助,赞一个