static void Main(string[] args)
{
int cou = 80; //用于控制取几个随机数
int max = 100; //最大可以取多大的数
List<int> rList = new List<int>(); //存放随机数
int temp;
Random ran = new Random();
while (rList.Count < cou)
{
temp = ran.Next(max) + 1;
if (!rList.Contains(temp))
{//这里排除重复的数
rList.Add(temp);
}
}
// 输出随机数
foreach (int i in rList)
{
Console.WriteLine(i);
}
Console.Read();
}
丁学
|
专家六级
|园豆:18730
|
2008-08-03 13:48