码迷,mamicode.com
首页 > 其他好文 > 详细

字符串统计

时间:2018-07-16 21:11:45      阅读:168      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!