主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
zxd12363
2024年3月24日 17:39
统计卡牌的值 题解:
P1735
回复 0
|
赞 0
|
浏览 368
#include<bits/stdc++.h> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { int sum = 0; char a[1005]; &nbs...
damowanghwj
2024年3月16日 12:58
统计卡牌的值 题解:map
P1735
回复 0
|
赞 0
|
浏览 368
#include<bits/stdc++.h> using namespace std; map<char,int> f = {{'J',1},{'Q',2},{'K',3},{'A',4} }; int main(){ int n; cin >> n; getchar(); int ans = 0; // cout << f['1']; while(n--){ ...
happyday
2022年4月7日 15:48
注意审题,只有字母算分
P1735
回复 0
|
赞 0
|
浏览 5.8k
#include <bits/stdc++.h> using namespace std; int main(){ int n; string s; cin>>n; int sum=0; while(n--){ cin>>s; for(int i=0; i<s.size(); i++){ if(s[i]=='J') sum += 1; else if(s[i]=='Q') sum += 2; ...
also_easy
2022年2月19日 19:04
没看清题
P1735
回复 0
|
赞 0
|
浏览 5.1k
注意题目描述:只有'A','J','Q','K'算分,其他不用管。代码就不贴了。
题目
统计卡牌的值
题解数量
4
发布题解
热门题解
1
统计卡牌的值 题解:map
2
统计卡牌的值 题解:
3
注意审题,只有字母算分
4
没看清题