题解 | #统计字符#

统计字符

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

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl;
using std::string;
int char_num = 0;
int space_num = 0;
int digit_num = 0;
int  other_num = 0;
bool isspace(char ch) {
    return ch == ' ';
}
void count_function(const string& str) {
    for (auto it = str.begin(); it != str.end(); it++) {
        if (isalpha(*it)) { // 判断是否为字母
            char_num ++;

        } else if (isspace(*it)) { // 判断是否为空格
            space_num++;
        } else if (isdigit(*it)) { // 判断是否为数字
            digit_num ++;
        } else { //为其他字符
            other_num++;
        }
    }
    cout <<  char_num  << endl;
    cout <<  space_num  << endl;
    cout <<  digit_num  << endl;
    cout <<  other_num  << endl;
}
int main(void) {
    string str;
    getline(cin, str);
    count_function(str);
}

全部评论

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
CrazyBucket:我今天下午也做梦在招聘会上面试一家小厂,给自己气笑了
点赞 评论 收藏
分享
10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务