txt文件-英汉字典
内容要求
要求从一个txt文件读取,使用map制作英汉字典
#include <string>
#include <iostream>
#include <map>
#include <fstream>
using namespace std;
string fileName1("file1.txt"); //file1
map<string,string> trans_map; //定义map对象,存储file1的内容
map<string, string>::iterator iter;
string key,value;
//英-汉字典 //键值对
int englishchinese()
{
ifstream infile;
infile.open(fileName1.c_str()); //别忘了要把文件名转化为C风格字符串!
//判断txt文件是否打开成功
if(!infile){
cerr<<"error:enable open file:"<<fileName1<<endl;
return</