编程语言
首页 > 编程语言> > 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);
}

标签:专场,cnt,const,int,long,2021CCPC,str,程序设计,include
来源: https://blog.csdn.net/Just__Do__IT__/article/details/121172333