首页 > 编程语言 > 详细

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

时间:2017-05-10 10:40:54      阅读:284      评论:0      收藏:0      [点我收藏+]
/********************************************************************
@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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!