HDU-2017-字符串统计

/*
    Name: HDU-2017-字符串统计
    Date: 18/04/17 20:19
    Description: 水过 
*/

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;cin>>n;
    while(n--){
        string str;cin>>str;
        int ct = 0;
        for(string::iterator it = str.begin(); it!=str.end(); ++it)if(isdigit((*it)))ct++;
        cout<<ct<<endl;
    }
    return 0;
}

 

posted @ 2017-04-18 20:19  朤尧  阅读(255)  评论(0编辑  收藏  举报