2017-12-11 13 views
-2

私はマップにデータを挿入するためにcinを使う方法を知らない。cinを使ってC++でマップに要素を挿入する

私はそれがこのようなものになるはずと信じて:ここで

for(int i=0; i<=N;i++){ 
    mapas.insert ('/*word from cin*/',i); 
    /*or*/ 
    mapas[/*word from cin*/]=i; 
    } 

は私の完全なコードです:

#include <iostream> 
#include<algorithm> 
#include <string> 
#include <map> 

using namespace std; 

int main() { 

    map<string,int>mapas; 
    map<string,int>::iterator it; 
    int N;//how many words there will be 
    string zodis;//the word I will be looking for later 
    cin>>N; 
    cin>>zodis; 




    for(it=mapas.begin();it!=mapas.end();it++){ 
    cout<<it->first<<endl;} 

    } 

あなたが必要とする自分自身

+0

'mapas [zodis] = N;' – metal

+0

どの 'N'は常に1である場合を除き、 'N'であるワード1つのワード?代わりにあなたは 'N 'の単語と数字のペアを読みたいのですか?または本当に1つの単語と1つの数字だけ? – Caleth

答えて

0

を殺すImはおよそので、任意のアイデアをいただければ幸いに

mapas[<string>] = <int>; 

例えば、

mapas[zodis] = N; 
関連する問題