xaiohuo 发表于 2018-11-10 23:59:58

编程填空:按要求输出

下列程序的输出为"10 13 18 15 17 12 16 19",请补充代码

#include <iterator>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <stack>
#include <iostream>
#include <set>
using namespace std;
inta = {0, 6, 7, 3, 9, 5, 8, 6, 4, 9};
intb = {10, 11, 12, 13, 14, 15, 16, 17, 18, 19};
int main(int argc, char** argv) {
// 在此处补充你的代码
for(int i=0; i<10; i++)
                c] = b;
        for(it=c.begin(); it!=c.end(); it++)
                cout<<it->second<<" ";
        return 0;
}

仰望天上的光 发表于 2018-11-10 23:59:59

map<int,int> c;
map<int,int>::iterator it;
页: [1]
查看完整版本: 编程填空:按要求输出