CSP历年复赛题-P5015 [NOIP2018 普及组] 标题统计

原题链接:https://www.luogu.com.cn/problem/P5015

题意解读:统计字母、数字的个数。

解题思路:直接枚举判断,对于库函数的熟练可以更加高效。

100分代码:

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int ans = 0;
    char c;
    while(cin >> c)
    {
        if(isalnum(c)) ans++;
    }
    cout << ans;
    return 0;
}

 

posted @ 2024-06-09 11:54  五月江城  阅读(39)  评论(0编辑  收藏  举报