-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;}
}
あなたが必要とする自分自身
'mapas [zodis] = N;' – metal
どの 'N'は常に1である場合を除き、 'N'であるワード1つのワード?代わりにあなたは 'N 'の単語と数字のペアを読みたいのですか?または本当に1つの単語と1つの数字だけ? – Caleth