题解 | #[NOIP2018]标题统计#

[NOIP2018]标题统计

https://www.nowcoder.com/practice/b14b87bc6a4547a6839e0a5867c98dba

#include <iostream>
#include <string>

using namespace std;

int countNonWhitespaceCharacters(const string& title) {
    int count = 0;
    for (char c : title) {
        if (c != ' ' && c != '\n') {
            ++count;
        }
    }
    return count;
}

int main() {
    string title;
    getline(cin, title); // 使用getline确保能够读取包含空格的整行

    int result = countNonWhitespaceCharacters(title);
    cout << result << endl;

    return 0;
}

#c++#
全部评论

相关推荐

头像
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
评论
2
收藏
分享
牛客网
牛客企业服务