题目描述
小 K 同学向小 P 同学发送了一个长度为 88 的 01 字符串来玩数字游戏,小 P 同学想要知道字符串中究竟有多少个 11。
注意:01 字符串为每一个字符是 00 或者 11 的字符串,如“101”(不含双引号)为一个长度为 33 的 01 字符串。
输入格式
输入文件只有一行,一个长度为 88 的 01 字符串 s。
输出格式
输出文件只有一行,包含一个整数,即 01 字符串中字符 11 的个数。
输入输出样例
输入 #1
00010100
输出 #1
2
输入 #2
11111111
输出 #2
8
说明/提示
【输入输出样例 1 说明】
该 01 字符串中有 22 个字符 11。
【输入输出样例 2 说明】
该 01 字符串中有 88 个字符 11。
【数据规模与约定】
答案1:
#include <bits/stdc++.h>
using namespace std;
string s;int cnt; int main(){
cin>>s; for(int i=0;i<s.size();i++){
//s.size() 这个字符的长度
if(s[i]=='1') cnt++;
}
cout<<cnt;
return 0;
}
答案1:
#include <bits/stdc++.h>
using namespace std;
string s;int cnt; int main(){
cin>>s; for(int i=0;i<8;i++){
if(s[i]=='1') cnt++;
}
cout<<cnt;
return 0;
}
答案3 数组1
#include <bits/stdc++.h>
using namespace std; int main(){
char s[10]={0}; int cnt=0;
cin>>s; for(int i=0;s[i]!='�';i++){
if(s[i]=='1') {
cnt++;
}
}
cout<<cnt;
return 0;
}
答案4 数组2
#include <bits/stdc++.h>
using namespace std; int main() {
string s;
int cnt = 0;
cin >> s;
for (int i = 0; i < s.length(); i++) {
//s.length() 这个字符的长度
if (s[i] == '1') cnt++;
}
cout << cnt ;
return 0;
}