美文网首页
随机点名

随机点名

作者: 祝你万事顺利 | 来源:发表于2019-05-15 18:22 被阅读0次

    每次点名从1到number
    被点过的数字不会出现,直到全部数字被点一遍
    程序打开读取上次点名信息,关闭存储点名信息

    class Program
        {
            static int number = 9;
            static List<int> arr = new List<int>();
            static void Main(string[] args)
            {
                rollCall();
            }
            static void rollCall()
            {
                string[] arrStrs = File.ReadAllLines("arrText.txt");
                if(arrStrs.Length > 0)
                {
                    foreach (var item in arrStrs)
                    {
                        arr.Add(int.Parse(item));
                    }
                }
                
                while (Console.ReadLine() != "end")
                {
                    Console.WriteLine(GetRandomNumber(arr));
                }
    
                string[] tempArr = new string[arr.Count];
                for (int i = 0; i < arr.Count; i++)
                {
                    tempArr[i] = arr[i].ToString();
                }
                File.WriteAllLines("arrText.txt", tempArr);
    
            }
            static int GetRandomNumber(List<int> arr)
            {
                if(arr.Count <= 0)
                {
                    int arrLength = number;
                    for(int i = 0; i < arrLength; i++)
                    {
                        arr.Add(i + 1);
                    }
                }
                Random random = new Random();
                int randomIndex = random.Next(0, arr.Count);
                int temp = arr[randomIndex];
                arr.RemoveAt(randomIndex);
                return temp;
            }
        }
    

    相关文章

      网友评论

          本文标题:随机点名

          本文链接:https://www.haomeiwen.com/subject/tqftaqtx.html