摘要: 1 //在map中插入map的值: 2 #include <map> 3 #include <iostream> 4 int main() { 5 std::map<int, int>a,b,c; 6 a.insert({ 1,1 }); 7 a.insert({ 2,2 }); 8 //复制第一组 阅读全文
posted @ 2022-08-20 10:21 jessicaland 阅读(81) 评论(0) 推荐(0)