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