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]);
            }

  

相关文章:

  • 2021-10-01
  • 2021-10-01
  • 2019-12-24
  • 2021-07-09
猜你喜欢
  • 2022-12-23
  • 2021-09-02
  • 2021-05-16
  • 2022-12-23
  • 2021-11-30
  • 2021-10-11
相关资源
相似解决方案