码迷,mamicode.com
首页 > 编程语言 > 详细

问题 1012: C语言程序设计教程(第三版)课后习题6.2

时间:2017-05-10 11:35:23      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:open   get   程序   clu   ring   ati   设计   程序设计   sdi   

/********************************************************************
@file     Main.cpp
@date     2017-5-10
@author   Zoro_Tiger
@brief    问题 1012: C语言程序设计教程(第三版)课后习题6.2
          http://www.dotcpp.com/oj/problem1012.html
********************************************************************/
#include <cstdio>
#include <string>
#include <iostream>
#include <algorithm>
#include <cstring>

#define TEST
#undef  TEST

int main(int argc, const char* argv[])
{

#ifdef TEST
    freopen("in.txt", "r", stdin);
    freopen("out.txt", "w", stdout);
#endif

    std::string input = "";
    while (getline(std::cin, input))
    {
        int alpha_num = std::count_if(input.begin(), input.end(), isalpha);
        int digit_num = std::count_if(input.begin(), input.end(), isdigit);
        int space_num = std::count_if(input.begin(), input.end(), isspace);
        printf("%d ",  alpha_num);
        printf("%d ",  digit_num);
        printf("%d ",  space_num);
        printf("%d\n", input.size() - alpha_num - digit_num - space_num);
    }

    return 0;
}

 

问题 1012: C语言程序设计教程(第三版)课后习题6.2

标签:open   get   程序   clu   ring   ati   设计   程序设计   sdi   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/6834528.html

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