C++ 封装好的函数

#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <set>
using namespace std;

map<string, string> new_map(int people_count){
	map<string, string> newMap;
	for (int i = 0; i < people_count; ++i){
		string stu_name;
		string stu_gender;
		cout << "请输入学生名字:";
		cin >> stu_name;
		cout << "请输入学生性别:";
		cin >> stu_gender;
		newMap.insert(map<string, string>::value_type (stu_gender, stu_name));
	}
	return newMap;
}

void output_map(){
	int num;
	cout << "请输入学生数量:";
	cin >> num;
	map<string, string> newMap = new_map(num);
	for(auto it = newMap.begin(); it != newMap.end(); ++it){
		cout << it->first << it->second << endl;
	}
} 

void output_vector(){
	string str;
	int num_str;
	cout << "请输入字符数量:";
	cin >> num_str;
	vector<int> vec;
	for(int i = 0; i < num_str; ++i){
	cout << "请随便输入:";
	cin >> str;
	vec.push_back(num_str);
	}
	for(auto it = vec.begin(); it != vec.end(); ++it){
		cout << "字符是:";
		cout << *it << endl;
	}
}

int main(){
	output_map();
	output_vector();
	return 0;
}

就这些函数。
允许转载,请附加作者名字,谢谢!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值