摘要:
class Hero { public int ATN { get; set; } public int DEF { get; set; } public int HP { get; set; } public string Name { get; set; } public bool Attack(Her... 阅读全文
摘要:
52张牌随机分给4个玩家,要求每个玩家的牌用一个一维数组表示。 我们采用模拟大法。初始化一副扑克牌,洗牌,发牌。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using S 阅读全文