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

冒泡排序(c++)

时间:2017-11-05 22:23:43      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:numbers   iostream   std   end   比较   i++   main   冒泡排序   sort   

#include <iostream>
using namespace std;
int main()
{
 int a[11];
 int i, j, t;
 cout << "input 10 numbers: " << endl;
 for (i = 1; i <= 10;i++)
 {
  cin >> a[i];
  cout << endl;
 }
 for (j = 1; j <= 9;j++)//共进行n-1轮比较  9轮
 for (i = 1; i <= 10 - j;i++)//在每轮中要进行10-j次两两比较
 if (a[i]>a[i+1])
 {
  t = a[i]; a[i] = a[i + 1]; a[i + 1] = t;//交换两个数的位置,使小数上浮
 }
 cout << "the sorted numbers: " << endl;//输出10个数
 for (i = 1; i < 11;i++)
 {
  cout << a[i] <<"  "<< endl;
 }
 return 0;
}

冒泡排序(c++)

标签:numbers   iostream   std   end   比较   i++   main   冒泡排序   sort   

原文地址:http://www.cnblogs.com/rong123/p/7788938.html

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