C#数组随机生成四个随机数

  int[] face = new int[4];
            Random ra = new Random();
            for (int i = 0; i < face.Length; i++)
            {
                int count = 0;
                face[i] = ra.Next(0,2);
                for (int j= 0; j < i; j++)
                {
                    if (face[i]==face[j])
                    {
                        count++;
                        if (count==2)
                        {
                        i--;
                        break;
                        }
                    }
                }
            }
            for (int i = 0; i < face.Length; i++)
            {
                Console.WriteLine(face[i]);
            }

  

原文地址:https://www.cnblogs.com/wjrelax/p/8067992.html