HDU 2017文字列統計(水~)
1645 ワード
Descriptionは、与えられた1つの文字列について、数値文字が出現した回数を統計するInput入力データが複数行あり、最初の行は整数nであり、テストインスタンスの個数を表し、その後n行に従い、各行はアルファベットと数字からなる文字列Outputを含み、各テストインスタンスについて、その列の数値の個数を出力する.出力ごとに1行のSample Input 2 asdfasdf 23123 asdfasdf 11111111 asdfasdfasdf Sample Output 6 9 Solution水題Codeを占める
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
char s[11111];
scanf("%s",s);
int ans=0,len=strlen(s);
for(int i=0;i<len;i++)
if(s[i]>='0'&&s[i]<='9')
ans++;
printf("%d
",ans);
}
return 0;
}