模拟法
思路:
-
每次输入是 8 个字符构成的 0 1 字符串,一次读入单个字符
-
判断当前字符是否是
1
,如果是,则计数 + 1 -
输出结果
#include <iostream>
using namespace std;
int main()
{
char c;
int res = 0;
for(int i = 0; i < 8; i++)
{
cin >> c;
if(c == '1')
res ++;
}
cout << res;
}