2017.字符串统计
Posted huoyuying
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017.字符串统计相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int main(){
int n,i,s;
char x;
cin>>n;
getchar();
for(i=0;i<n;i++){
s=0;
while((x=getchar())!=‘ ‘)
if(x>=‘0‘&&x<=‘9‘)
s++;
cout<<s<<endl;
}
return 0;
}
以上是关于2017.字符串统计的主要内容,如果未能解决你的问题,请参考以下文章