C++ 字符串转int

C++ 字符串转int,第1张

string字符串转int

题目:次佛锅

string ss;
int a = atoi(ss.c_str());

代码:

#include
#include
#include
#include
#include
#include
using namespace std;

unordered_map<string, int> map1;
int main()
{
    int n;
    string  s2, s1, tmp;
    char c;
    getline(cin, s2);
    cin >> n;
    stringstream ss(s2);
    while(ss >> s1)
    {
        if(! isdigit(s1[0]) )
        {
            tmp = s1;
            // cout<<"tmp:"<
        }
        else{
            int x = atoi(s1.c_str());
            if(! map1.count(tmp)) map1[tmp] = x;
            else map1[tmp] += x;
            // cout<<"x:"<
        }
    }

    while(n --)
    {
        string s3;
        cin >> s3;
        cout << map1[s3] << endl;
    }

    return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/563587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-02
下一篇 2022-04-02

发表评论

登录后才能评论

评论列表(0条)

保存