C#产生随机数
2020-12-13 13:53
阅读:406
标签:style blog color sp div log bs new as C#产生随机数 C#产生随机数 标签:style blog color sp div log bs new as 原文地址:http://www.cnblogs.com/liuzixiang/p/4056974.html
1 // Random为随机数生成器
2 Random r = new Random();
3 // 返回介于最小值和最大值之间的随机整数
4 int val = r.Next(1000, 10000);
5 // 返回介于0.0至1.0之间的随机浮点数
6 double dVal = r.NextDouble();
评论
亲,登录后才可以留言!