码迷,mamicode.com
首页 > 其他好文 > 详细

将整数100 随机分成 10段

时间:2015-05-08 14:33:10      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

static void Main(string[] args)
        {
            int[] a=new int[101];
            Random r = new Random();
            int IntervalCount=10;             

            int count = 0;
            while(count<IntervalCount-1)
            {
                int v = r.Next(99) + 1;
                if (a[v] == 1) continue;
                else
                {
                    a[v] = 1;
                    count++;
                }
            }
            a[100] = 1;
            
            int flag = 0;
            int totalCount = 0;
            for (int i = 1; i <= 100; i++)
            {
                if (a[i] == 0) continue;
                else
                {
                    Console.WriteLine(flag.ToString()+"-"+i.ToString()+".span="+(i-flag).ToString());
                    totalCount++;

                    flag = i;
                }
            }
            Console.WriteLine("lines=>" + totalCount.ToString());
            Console.ReadKey();

            
        }

 

将整数100 随机分成 10段

标签:

原文地址:http://www.cnblogs.com/zzPrince/p/4487343.html

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