标签:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 随机数 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 //产生一个m到n之间的随机数 14 //Random r = new Random(); 15 //int i = r.next(m,n+1); 16 17 Random r = new Random(); 18 while (true) 19 { 20 int i = r.Next(1, 2);//随机数在大于等于1,小于2之间产生(随机数在大于等于最小数,小于最大数之间产生,并不等于最大数) 21 Console.WriteLine(i); 22 Console.ReadKey(); 23 } 24 25 } 26 } 27 }
标签:
原文地址:http://www.cnblogs.com/start-from-scratch/p/5028073.html