码迷,mamicode.com
首页 > Windows程序 > 详细

C#之使用随机数

时间:2016-10-23 18:11:52      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:使用   整数   sys   unity   engine   函数   oat   using   deb   

1.C#自带随机数函数

using System;

System.Random ran = new System.Random();
int n = ran.Next(100, 1000);//产生100到999之间的随机整数

Debug.Log (n);

 

2.Unity自带随机数函数

using UnityEngine; 

float f  = UnityEngine.Random.value;//产生0到1之间的随机数

Debug.Log(f);

C#之使用随机数

标签:使用   整数   sys   unity   engine   函数   oat   using   deb   

原文地址:http://www.cnblogs.com/huangshiyu13/p/5990191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!