协助我让程序从文本文件中读取索引号?

时间:2017-04-03 18:10:20

标签: c++

void login() {
string name;
string username;
string password;
string usernameFromFile;
string passwordFromFile;

ifstream infile;
infile.open(name + ".txt");
cout << "Please enter your username \n";
cin >> username;
}

我想让这个程序将输入的密码与已保存在文本文件中的密码进行比较,该密码在文本文件中的索引编号为1,有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

你可以这样做:

ifstream infile {name + “.txt”};
string password;
infile >> password;