C#在线考试选择题判断方法

在线考试系统中,我们常常会对客观题(如 单选题、多选题)进行正误判断,而主观题(如 简答题、分析题)可以采用 关键词匹配 与 人工评卷 相结合。以下是【选择题】的一种判断方法:

/// 
/// 选择题结果判断
/// 
/// 
/// GetChoiceAnswerMarkReust("ABCD","ABCD") 结果:√
/// GetChoiceAnswerMarkReust("ABCD","ABC") 结果:√×
/// GetChoiceAnswerMarkReust("ABCD","BCDE") 结果:×
/// 
/// 正确答案
/// 用户答案
/// 
public string GetChoiceAnswerMarkReust(string RightAnswer, string UserAnswer)
{
    string result = "?";
    if (!string.IsNullOrWhiteSpace(RightAnswer) && !string.IsNullOrWhiteSpace(UserAnswer))
    {
        char[] arrRight = RightAnswer.ToCharArray();
        char[] arrUser = UserAnswer.ToCharArray();
        if (arrRight.OrderBy(r => r).SequenceEqual(arrUser.OrderBy(i => i)))
        {
            result = "√";//元素相同:全对
        }
        else if (arrUser.Count() > 0 && arrUser.Except(arrRight).Count() == 0)
        {
            result = "√×";//元素包含:半对
        }
        else
        {
            result = "×";//元素差别:错误
        }
    }
    return result;
}

你可能感兴趣的:(C#,ASP-NET)