定义函数void sort,用冒泡法对数组a中的元素排序。自己定义main函数,并在其中调用sort函数。

在main函数中实现:首先调用scanf函数输入10个整数
2025-01-03 02:11:50
推荐回答(1个)
回答1:

public static void exchange(double a,double b)
{
double c;
c=a;
a=b;
b=c;
}

public void sort(double[] a)
{
int count=0,i=0;
do
{
for(int j=i;j {
if(a[j]>a[j+1])
{
exchange(a[j],a[j+1]);
count++;
}
}
i++;
}while(count>0&&i }

主要的方法是这两个,根据你的需要再修饰一下就是了啊。