手机
当前位置:查字典教程网 >编程开发 >C#教程 >向一个数组中插入一个1~100的随机数
向一个数组中插入一个1~100的随机数
摘要:namespaceConsoleApplication2{classProgram{staticvoidMain(string[]args)...

namespace ConsoleApplication2 { class Program { static void Main(string[] args) { List<int> list = new List<int>(); Random ran = new Random(); while(true) { if (list.Count >= 100) { break; } int s = ran.Next(1, 101); if (!list.Contains(s)) { list.Add(s); } } list.Sort(); foreach (int i in list) { Console.Write(i + " "); } Console.ReadKey(); } } }

【向一个数组中插入一个1~100的随机数】相关文章:

深入理解C#中常见的委托

C#短时间内产生大量不重复的随机数

提取HTML代码中文字的C#函数

两路归并的数组与链表的实现方法

C# 中将数值型数据转换为字节数组的方法

c# 方法可变数量的参数

将数组中指定数量的元素移动数组后面的实现代码

C# 正则判断一个数字的格式是否有逗号的代码

c#循环中产生伪随机数

c# dataTable 合并两个列到一个新列中的简单实例

精品推荐
分类导航