CSP歷年複賽題-P5660 [CSP-J2019] 數字遊戲

五月江城發表於2024-06-11

原題連結:https://www.luogu.com.cn/problem/P5660

題意解讀:統計字串中1的個數

解題思路:直接列舉判斷。

100分程式碼:

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

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

相關文章