当前位置: 代码迷 >> ASP.NET >> 怎么批量生成7为随机数
  详细解决方案

怎么批量生成7为随机数

热度:5419   发布时间:2013-02-25 00:00:00.0
如何批量生成7为随机数?
如题。

------解决方案--------------------------------------------------------
C# code
            Random r = new Random();            for (int i = 0; i < 100; i++)            {                int result = r.Next(1000000, 9999999);                Console.WriteLine(result);            }
  相关解决方案