扑克牌洗牌
摘要:
代码比较简单。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace RandomNumber{ public class RandomCreater { // 随机数生成器只需要一个 private static readonly System.Random random = new Random(); public int[] Random(int[] array) { int length = array.Length; for (int i = 0; i &l 阅读全文
posted @ 2011-04-08 15:30 冠军 阅读(974) 评论(4) 推荐(0) 编辑