⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 quizhelper.cs

📁 老师信息管理
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace MySchool
{
    class QuizHelper
    {
        public static int totalSeconds = 1200; // 答题总时间20分钟
        public static int remainSeconds;       // 剩余的时间

        public static int[] allQuestionIds;    // 所有问题的Id数组
        public static bool[] selectedStates;   // 记录对应索引的问题是否已经被随机抽中

        public static int questionNum = 20;                        // 题目数量
        public static int[] selectedQuestionIds = new int[20];     // 选出的问题Id数组        
        public static string[] correctAnswers = new string[20];    // 标准答案数组
        public static string[] studentAnswers = new string[20];    // 学员的答案   
        
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -