在c#中怎么随机抽取数组中的数据
展开全部
用Random随机生成数组索引,然后返回数组元素
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] a = { 1, 2, 3, 4, 5, 6, 7, 8 };
for (int i = 0; i < 10; i++)
{
Console.WriteLine(GetRandomNumber(a));
// 按任意键,取下一个
Console.ReadKey();
}
}
// 随机抽取数组中的数据
static int GetRandomNumber(int[] a)
{
Random rnd = new Random();
int index = rnd.Next(a.Length);
return a[index];
}
}
}
展开全部
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] a = { 1, 2, 3, 4, 5, 6, 7, 8 };
for (int i = 0; i < a.Length; i++)
{
Console.WriteLine(GetRandomNumber(a));
// 按任意键,取下一个
Console.ReadKey();
}
}
// 随机抽取数组中的数据
static int GetRandomNumber(int[] a)
{
Random rnd = new Random();
int index = rnd.Next(a.Length);
return a[index];
}
}
}
用Random随机生成数组索引,然后返回数组元素
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询