码迷,mamicode.com
首页 > 编程语言 > 详细

冒泡排序

时间:2018-08-31 12:33:54      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:lin   adk   line   OLE   color   res   core   []   冒泡排序   

int[] scores = { 89, 90, 98, 56, 60, 91, 93, 85 };
            Console.WriteLine("排序前:");
            foreach(int score in scores)
            {
                Console.Write(score + " ");
            }
            Console.WriteLine();
            Console.ReadKey();

            int temp;
            for (int i = 0; i < scores.Length - 1; i++) {
                for(int j = i + 1; j < scores.Length; j++)
                {
                    if (scores[i] < scores[j]) {
                        temp=scores[i];
                        scores[i] = scores[j];
                        scores[j] = temp;
                    }
                }
            }
            Console.WriteLine("从大到小排序:");
            foreach (int score in scores) {
                Console.Write(score + " ");
            }
            Console.ReadKey();

 

冒泡排序

标签:lin   adk   line   OLE   color   res   core   []   冒泡排序   

原文地址:https://www.cnblogs.com/xixixing/p/9565132.html

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