2021CCPC中国大学生程序设计竞赛女生专场 K 音乐游戏

题目链接

题目描述

2021CCPC中国大学生程序设计竞赛女生专场 K 音乐游戏
2021CCPC中国大学生程序设计竞赛女生专场 K 音乐游戏

解题思路

这是一个签到题,只要统计_的个数就行了

代码:

#include<iostream>
#include<stdio.h>
#include<vector>
#include<string>
#include<algorithm>
#include<map>
#include<queue>
using namespace std;
const int maxn = 1e5+7;
const int mod = 1e9+7;
#define ll long long
int a[15];
int b[15];
int main(){
//	freopen("in.txt","r",stdin);
	int n;scanf("%d",&n);
	getchar();
	int cnt=0;
	while(n--){
		string str;
		getline(cin, str);
		//cout<<str<<endl;
		for(int i=0;i<str.size();i++){
			if(str[i]=='-')cnt++;
		}
	}
	printf("%d\n", cnt);
}

上一篇:arduino 点灯科技 用esp8266 01s 实现wifi控制继电器开关 支持天猫精灵


下一篇:【题解】2021CCPC华为云挑战赛 重叠的子串