用冒泡法对10个数排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用冒泡法对10个数排序相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<stdlib.h> using namespace std; int main() { int a[11]; int i, j, t; cout<<"input 10 nummbers:"<<endl; for(i=1;i<11;i++) { cin>>a[i]; } cout<<endl; for(j=1;j<11;j++) { for(i=1;i<=10-j;i++) { if(a[i]>a[i+1]) { t = a[i]; a[i] = a[i+1]; a[i+1] = t; } } } cout<<"the sorted nummbers:"<<endl; for(i=1;i<11;i++) { cout<<a[i]<<" "; } cout<<endl; system("pause"); return 0; }
以上是关于用冒泡法对10个数排序的主要内容,如果未能解决你的问题,请参考以下文章