generate random numbers with no repeat in c#(在c#中生成不重复的随机数)
问题描述
如何在 C# 中生成不重复的随机数.我有一个数组,我想用 0 到 9 的随机数填充每个房间.每个房间应该有不同的数字.我用这个:
How can I generate random numbers with no repeat in C#. I have one array and I want to fill every room with random numbers from 0 to 9. Each room shoud have diffrent numbers. I use this:
for (int i = 0; i < 20; i++)
{
Random rnd = new Random();
int temp = 0;
temp = rnd.Next(0, 9);
page[i] = temp;
}
但我在每个房间的数组中得到相同的数字.
But I get same number in evey room's of array.
推荐答案
有了这么小的数字列表,您可以简单地生成一个包含所有数字的列表,然后 随机播放他们.
With such a small list of numbers to choose from you can simply generate a list that contains all of them and then shuffle them.
这篇关于在c#中生成不重复的随机数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在c#中生成不重复的随机数
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30