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

hdu 2017 字符串统计

时间:2020-02-08 09:29:13      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:cin   %s   space   getchar   字符串   code   ios   字符串统计   分析   

字符串统计

技术图片

 

 题目分析:

录入字符串,判断数字有多少个,累加保存。

代码:

#include<iostream>
using namespace std;
int main()
{
    char a[100001];
    int n;
    while (cin >> n&&n)
    {
        while (n--)
        {
            getchar();
            scanf("%s", a);
            int i, num = 0;
            int len = strlen(a);
            for (i = 0; i < len ; i++)
            {
                if (a[i] >= 0&&a[i] <= 9)
                {
                    num++;
                }
            }
            cout << num << endl;
        }
    }
    system("pause");
    return 0;
}

 

hdu 2017 字符串统计

标签:cin   %s   space   getchar   字符串   code   ios   字符串统计   分析   

原文地址:https://www.cnblogs.com/pcdl/p/12275377.html

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