我的程序根本没有对数字进行排序。它会按照最初输入的顺序显示它们。它必须从最小的数字到最大的数字进行排序。下面的代码应找到数组中的最大数字,并将其与最后一个交换。代码如下:
import java.util.Scanner;
public class maxSorttt {
public static void main(String[] args) {
double[] ten = new double[10];
Scanner input = new Scanner(System.in);
System.out.print("Enter 10 numbers: ");
for (int i = 0; i < ten.length; i++)
ten[i] = input.nextDouble();
sort(ten);
}
public static void sort(double[] array) {
for (int i = array.length - 1; i < 0; i--) {
double currentMax = array[i];
int currentMaxIndex = i;
for (int x = i - 1; x < -1; x--) {
if (currentMax < array[x]) {
currentMax = array[x];
currentMaxIndex = x;
}
}
if (currentMaxIndex != i) {
array[currentMaxIndex] = array[i];
array[i] = currentMax;
}
}
for (int i = 0; i < array.length; i++)
System.out.print(array[i] + " ");
}
}
2条答案
按热度按时间iqxoj9l91#
我相信你的问题就在这里:
array.length不小于0,因此for循环永远不会运行。你可能想要
juud5qan2#
简单点!