我正在做一种自我测验,您可以在其中添加问题然后自我测验。
我希望能够向您提出所有问题(如果可能,随机提出)。我已经让它有点工作,但它偶尔会错过一些问题或重复它们。
public void LoadUp() {
if(TimeLimit) {
timer2.Start();
}
KeyWords.Clear();
Hint_Used=false;
int QuestionCount=correct+incorrect;
int AnswerCount=Study_Helper.Form1.QuizList.Count;
Random random=new Random();
int randomNumber=random.Next(0, Study_Helper.Form1.QuizList.Count);
if(!Study_Helper.Form1.PreviousQuestions.Contains(randomNumber)) {
Study_Helper.Form1.PreviousQuestions.Add(randomNumber);
String raw=Study_Helper.Form1.QuizList[randomNumber].ToString();
String[] Split=raw.Split(new char[] { '|' });
Question=Split[0];
richTextBox1.Text=Question;
Answer=Split[1];
Hint=Split[2];
String[] NewSplit=Split[3].Split(new char[] { ',' });
int TotalKeywords=0;
foreach(string s in NewSplit) {
TotalKeywords++;
}
for(int size=0; size<TotalKeywords-1; size++) {
String KeyWord=NewSplit[size].ToString();
KeyWords.Add(KeyWord);
}
}
else if(QuestionCount>=AnswerCount) {
int Total=correct-incorrect;
if(Total<0) {
Total=0;
}
timer2.Stop();
Counter=Study_Helper.Form4.Counter;
Form6 form6=new Form6();
form6.Show();
TimeLimit=false;
MessageBox.Show("Study Questions over! you got "+Total+" in total, that's "+correct+" correct answers!", "Results", MessageBoxButtons.OK, MessageBoxIcon.Information);
correct=0;
incorrect=0;
this.Close();
}
}
它所做的是将随机数添加到保存它的列表中,并检查是否已经包含它。我觉得我遗漏了一些明显的东西来流畅地完成这项工作。