摘要: 在写数独基类的时候为了产生随机数的时候遇到奇怪的问题 代码如下: namespace RandomTest { class Program { static void Main(string[] args) { for (int i = 0; i < 100; i++) { Random d = new Random(); Console.WriteLine(d.Next(100)); } }... 阅读全文
posted @ 2009-02-03 14:17 肚肚 阅读(804) 评论(0) 推荐(1)