C语言编程题 题目描述 使用冒泡排序法对数组元素从小到大进行排序,要求输出每一趟排序后的数组内容(

2024-11-07 07:41:30
推荐回答(2个)
回答(1):

#include "stdafx.h"
#include
#include
using namespace std;

void sort(int arry[],int counts)//冒泡排序法
{
for(int i=0;i {
for(int j=0;j {
if(arry[j]>arry[j+1])//比较大小
{
int temp;
temp=arry[j];
arry[j]=arry[j+1];
arry[j+1]=temp;
}
}
for (int k=0;k {
cout< }
cout<<'\n';
}
}

int main()
{
int arry[10];
char c;
int counts=0;
while((c=getchar())!='\n')//获取一行输入
{
if(c>='0'&&c<='9')
{
ungetc(c,stdin);//将获取的字符返回流
cin>>arry[counts++];
}
}
sort(arry,counts);
system("pause");
return 0;
}

回答(2):

假设数组有10个数
#include
int main()
{
int a[10]={1,2,3,4,5,6,7,8,9,10};
int i,j,t;
for(i=1;i<10;i++){
for(j=0;j<10-i;j++)
{
if (a[j]>a[j+1])
{
t=a[j];
a[j]=a[j+1];
a[j+1]=t;
}
for(int k=0;k<10;k++){
printf("%4d\n",a[k]);
}

}
}
}