如何随机抽取25到225的随机数? 例如:25,45 .65,85,105到225?
答案 0 :(得分:1)
Random rnd = new Random();
....
int x = rnd.Next(11)*20 + 25; // or .Next(10), if 225 is exclusive
答案 1 :(得分:0)
创建可接受值的数组。即25,45,65,...... 255。 使用随机生成的数字来访问数组的索引。 获取该数组索引的值。 世界上充满了幸福和快乐。