CSP歷年複賽題-P5015 [NOIP2018 普及組] 標題統計

江城伍月發表於2024-06-09

原題連結: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;
}

相關文章