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;
}