摘要: 一副扑克有52张牌,那么使用数组存储这52张牌,然后打乱这些牌。using System;using System.Collections.Generic;using System.Collections;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Poker{ class Program { static void Main(string[] args) { ArrayList al = new ArrayList(); ... 阅读全文
posted @ 2013-06-13 06:57 Ligeance 阅读(375) 评论(0) 推荐(0)