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

使用C#完成冒泡排序

时间:2018-11-03 12:35:48      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:sys   text   system   class   分享   ogr   main   ons   inf   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 冒泡排序
{
class Program
{
static void Main(string[] args)
{
int[] sores = { 18, 19, 20, 45, 62, 32, 89, 75, 41, 32, 69 };

for (int i = 0; i < sores.Length-1; i++)
for (int j = 0; j<sores.Length-1; j++)
{
int team;
if (sores[j] < sores[j+1])
{
team = sores[j];
sores[j] = sores[j +1];
sores[j +1] = team;


}
}
Console.WriteLine("按顺序从小到大排列后的数组是");
for(int i=0;i<sores.Length;i++)
Console.Write(sores[i]+" ");
Console.ReadKey();
}
}
}

技术分享图片

 

使用C#完成冒泡排序

标签:sys   text   system   class   分享   ogr   main   ons   inf   

原文地址:https://www.cnblogs.com/qmk-716/p/9900118.html

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