我已经编写了这段代码,我读到的文件包含3个多项选择题。该程序工作正常,我可以存储答案,但有一个问题。每次编译时我都需要随机化问题的顺序。唯一的方法是读取数组中的文件。我似乎无法弄清楚如何做到这一点。任何帮助表示赞赏。 P.S我是c ++的新手
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main()
{
char c;
char d;
string line_;
ifstream file_("mpchoice.txt");
if (file_.is_open())
{
while (getline(file_, line_))
{
cout << line_ << '\n';
}
file_.close();
}
cout << "What is your response for number 1\n";
cin >> c;
if (c == 'A')
cout << "That's wrong\n";
cout << "What's your response for the second question\n";
cin >> d;
if (d == 'A'){
cout << "That's correct\n";
}
else
cout << "That's wrong\n";
return 0;
}
答案 0 :(得分:3)
您可以先从std::vector<std::string>
标题中将每一行放入<vector>
(reference):
ifstream file_("mpchoice.txt");
vector<string> lines;
if (file_.is_open())
{
while (getline(file_, line_))
{
cout << line_ << '\n';
lines.push_back(line_);
}
file_.close();
}
然后使用std::random_shuffle
标题中的<algorithm>
(reference):
random_shuffle(lines.begin(), lines.end());
这里有一个example,演示了这些标准库设施的使用。