首页 > 编程 > C# > 正文

向一个数组中插入一个1~100的随机数

2020-01-24 02:39:02
字体:
来源:转载
供稿:网友
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();     }   } }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表