0

Question set私は特定の質問をすべて受けています(topicID,Marks)。私は質問をランダムに表示totqsnしています。つまり、表示する質問の総数は 10 問です。特定のマーク (1,2,3,4) の質問数のカウントをこの int 変数mark1Qsn,mark2Qsn,mark3Qsn,mark4Qsnにそれぞれ格納しています。以下のコードを使用して、 totqsnのQuestionSetから質問を表示します(たとえば、(TopicID、marks)の34個の質問が含まれているとします)(QuestionSetからランダムに10個の質問を表示するとします)。 ,3 点満点の 1 問,4 点満点の 3 問 ie totqsn(10 questions= 3 qsn_of_mark1 + 3 qsn_of_mark2 + 1 qsn_of_mark3 + 3 qsn_of_mark3)

public partial class GroupExmStart : Form
{        
    DBHandling db = new DBHandling();

    string GrpID = "";
    string TopiID = "";
    int totQsn = 0;
    int mark1qsn = 0;
    int mark2Qsn = 0;
    int mark3Qsn = 0;
    int mark4Qsn = 0;
    int tik = 0;
    string QuestionSet = "";
    static Random _r = new Random();
    string[] randomQsn = null;
    string[] QAndA = null;
    public GroupExmStart(string GroupName, string DurationID)
    {
        InitializeComponent();

        totQsn = Convert.ToInt16(conf[0]);    
        mark1qsn = Convert.ToInt16(conf[3]);//this variable contains number of question to be display of mark 1
        mark2Qsn = Convert.ToInt16(conf[4]);
        mark3Qsn = Convert.ToInt16(conf[5]);
        mark4Qsn = Convert.ToInt16(conf[6]); 

        QuestionSet = db.GetQuestions(TopiID, "1");
        QuestionSet = QuestionSet + db.GetQuestions(TopiID, "2");
        QuestionSet = QuestionSet + db.GetQuestions(TopiID, "3");
        QuestionSet = QuestionSet + db.GetQuestions(TopiID, "4");
        int z = Quiz(QuestionSet);

        foreach (string qa in QAndA.OrderBy(i => _random.Next()))
        {
            if (qa != null)
                if (qa.IndexOf('~') != -1)
                {
                    randomQsn[count] = qa;
                    count++;
                    if (count == totQsn)
                        break;
                }
        }

        int Quiz(string data)
        {
            string[] words = data.Split('$');
            randomQsn = new string[totQsn + 1];
            QAndA = new string[words.Length + 1];
            for (int i = 0; i < words.Length; i++)
            {
                QAndA[i] = words[i];
            }

            return 0;
        }
    }
}

DBHandling クラスからアクセスする GetQuestions メソッド

public string GetQuestions(string TopicID, string Marks)
{
    string data = "";
    try
    {
        string sql = "select QID,Question,Opt1,Opt2,Opt3,Opt4,AnsOp,Marks from Questions where TopicID IN(" + TopicID + ") and Marks=" + Marks;
        cmd = new OleDbCommand(sql, acccon);
        rs = cmd.ExecuteReader();
        while (rs.Read())
        {
            data = data + rs[0].ToString() + "~" + rs[1].ToString() + "~" + rs[2].ToString() + "~" + rs[3].ToString() + "~" + rs[4].ToString() + "~" + rs[5].ToString() + "~" + rs[6].ToString() + "~" + rs[7].ToString() + "$";
        }
    }
    catch (Exception err)
    {
        MessageBox.Show(err.Message.ToString());
    }
    return data;
}

助けてくれてありがとう

4

1 に答える 1

1

完全にテストされておらず、非常に面倒ですが...

 public class Question
    {
        public string Id { get; set; }
        public string Text { get; set; }

        public string Option1 { get; set; }
        public string Option2 { get; set; }
        public string Option3 { get; set; }
        public string Option4 { get; set; }

        public string AnswerOption { get; set; }
        public int Marks { get; set; }
    }

    public IEnumerable<Question> GetQuestions(string topicId, int marks)
    {
        string sql = "select QID,Question,Opt1,Opt2,Opt3,Opt4,AnsOp,Marks from Questions where TopicID IN(" +
                     topicId + ") and Marks=" + marks.ToString();
        var cmd = new OleDbCommand(sql, new OleDbConnection(""));
        var rs = cmd.ExecuteReader();

        if (rs != null)
        {
            while (rs.Read())
            {
                yield return
                    new Question
                        {
                            Id = rs[0].ToString(),
                            Text = rs[1].ToString(),
                            Option1 = rs[2].ToString(),
                            Option2 = rs[3].ToString(),
                            Option3 = rs[4].ToString(),
                            Option4 = rs[5].ToString(),
                            AnswerOption = rs[6].ToString(),
                            Marks = marks
                        };
            }
        }
    }

    public void Foo()
    {
        var totQsn = Convert.ToInt16(conf[0]); // isn't this just the sum of everything else?
        var mark1qsn = Convert.ToInt16(conf[3]); //this variable contains number of question to be display of mark 1
        var mark2qsn = Convert.ToInt16(conf[4]);
        var mark3Qsn = Convert.ToInt16(conf[5]);
        var mark4Qsn = Convert.ToInt16(conf[6]);

        var mark1questionSet = GetQuestions(topicId, 1).ToList();
        var mark2questionSet = GetQuestions(topicId, 2).ToList();
        // etc

        var finalQuestions = new List<Question>();

        for (int i = 0; i < mark1qsn; i++)
        {
            var setIndex = _random.Next(mark1questionSet.Count);
            finalQuestions.Add(mark1questionSet[setIndex]);
            mark1questionSet.RemoveAt(setIndex);
        }

        for (int i = 0; i < mark2qsn; i++)
        {
            var setIndex = _random.Next(mark2questionSet.Count);
            finalQuestions.Add(mark2questionSet[setIndex]);
            mark2questionSet.RemoveAt(setIndex);
        }
        // etc - put this into a method or something
    }
于 2013-08-04T14:48:07.730 に答える