优雅的C++

统计字符

http://www.nowcoder.com/practice/539054b4c33b4776bc350155f7abd8f5

#include<iostream>
#include<string>
using namespace std;
int main()
{
    string str;
    while (getline(cin, str))
    {
        int a = 0, b = 0, c = 0, d = 0;
        for (const auto item : str)
        {
            if (isalpha(item))
                ++a;
            else if (isspace(item))
                ++b;
            else if (isdigit(item))
                ++c;
            else if (ispunct(item))
                ++d;
        }
        cout << a << endl << b << endl << c << endl << d << endl;
    }
    return 0;
}

全部评论
数字没统计到 循环不用迭代才行 迭代器定义了char型 所以count不到数字了
2 回复 分享
发布于 2021-09-27 18:23
for(auto i:str){...} 这么写for循环还能更优雅哈哈哈
点赞 回复 分享
发布于 2022-12-04 08:14 英国

相关推荐

无情咸鱼王的秋招日记之薛定谔的Offer:好拒信,偷了,希望有机会用到
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
评论
35
1
分享
牛客网
牛客企业服务