CSP历年复赛题-P5660 [CSP-J2019] 数字游戏

原题链接: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;
}

 

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