标签:for amp strlen 水题 clu end char s turn ring
#include<iostream>
#include<string.h>
using namespace std;
int main ()
{
int n;
cin>>n;
while(n--)
{
int count=0;
char s[1000000];
cin>>s;
int m=strlen(s);
for(int i=0;i<m;i++)
if(s[i]>=‘0‘&&s[i]<=‘9‘)
count++;
cout<<count<<endl;
}
return 0;
}
开始先做水题熟悉手感,之后几天跟着上课,掌握方法,逐渐增加难度
标签:for amp strlen 水题 clu end char s turn ring
原文地址:https://www.cnblogs.com/huanya/p/9319926.html