close
Random rnd = new Random(); int month = rnd.Next(1, 13); // 1 <= month < 13 int dice = rnd.Next(1, 7); // 1 <= dice < 7 int card = rnd.Next(52); // 0 <= card < 52
文章標籤
全站熱搜
Random rnd = new Random(); int month = rnd.Next(1, 13); // 1 <= month < 13 int dice = rnd.Next(1, 7); // 1 <= dice < 7 int card = rnd.Next(52); // 0 <= card < 52
留言列表