📜  随机 int 生成器 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:08.657000             🧑  作者: Mango

代码示例1
Random rnd = new Random();
int month  = rnd.Next(1, 13);  // creates a number between 1 and 12
int dice   = rnd.Next(1, 7);   // creates a number between 1 and 6
int card   = rnd.Next(52);     // creates a number between 0 and 51