文章

34

粉丝

89

获赞

2

访问

19.2k

头像
统计卡牌的值 题解:map
P1735 华东师范大学2020机试题
发布于2024年3月16日 12:58
阅读数 365

#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--){
        string str;
        getline(cin,str);
        for(int i = 0;i < str.size();i++){
            if(f[str[i]]){}
            ans += f[str[i]];
        }
    }
    cout << ans << endl;
}
登录查看完整内容


登录后发布评论

暂无评论,来抢沙发