能不能讓console app隨機從我賦值的變量裡抽取一個顯示?新人求助,謝謝
static void Main(string[] args)
{
while (true)
{
int[] array = new int[5] { 33, 67, 23, -90, 2 };//樓主自己定義一個數組隨意定義一個數組,
Random rand = new Random();//實例化一個能產生隨機數的對象
int index = rand.Next(array.Length);//利用隨機對象產生一個隨機數組
Console.WriteLine(array[index]);//輸出數據
Console.ReadKey();//樓主按下任意鍵之後重新輸出一個數據
}
}