我在while循环中做错了什么?

时间:2016-01-27 10:16:16

标签: java arrays for-loop methods while-loop

我正在开发一个程序,它接受用户输入(温度)并将其放入数组中。我对我必须创建的最后一个方法感到困惑。我需要通过数组并从最小到最大打印它们。我需要使用while循环来执行此操作。

问题是我需要索引来保持温度值。指数代表温度的一天。我已经有一个方法可以找到数组中的最小值,并将其与索引一起打印出来。

我可以使用我已有的方法并在新方法中使用它吗?如果是这样,我不知道如何在执行while循环时调用该方法。我要尝试做的是找到最低值并打印值和索引,然后将值更改为我的“未初始化”变量,这样我就可以找到下一个最低值,依此类推。

我的代码“LeastToGreatest”中的最后一个方法是我尝试这样做但它不起作用。我一直在努力想要自己解决这个问题。我不知道我需要做什么,或者我需要如何组织它以使其工作。

这就是我所拥有的:

public class Weather {

static int lowestTemp;
static int lowestDay;

private static final int Uninitialized = -999;

public static void main(String[] args) {
    // TODO Auto-generated method stub

    int[] high = new int[32];


            FindLowestTempInArray(low);
    System.out.println("\n" + "The lowest low is: " + lowestTemp + " degrees." + "\n"
            + "This temperature was recorded on day: " + lowestDay);



            LeastToGreatest(low);
    System.out.println("\n" + lowestDay + "    " + lowestTemp + "\n");


    }


 public static int FindLowestTempInArray(int[] T) {
    // Returns the index of the lowest temperature in array T

    lowestTemp = Uninitialized;
    lowestDay = 0;

    for (int day = 0; day < T.length; day++) {
        if (T[day] != Uninitialized && (T[day] < lowestTemp || lowestTemp == Uninitialized)) {

            lowestTemp = T[day];
            lowestDay = day;
        }
        Arrays.asList(T).indexOf(lowestDay);
    }
    return lowestDay;

}



public static void LeastToGreatest(int[] T) {
    lowestTemp = Uninitialized;
    lowestDay = 0;

    while (lowestDay >= 0 && lowestDay <= 31) {
        for (int day = 0; day < T.length; day++) {

            if (T[day] != Uninitialized && (T[day] < lowestTemp || lowestTemp == Uninitialized)) {

                lowestTemp = T[day];
                lowestDay = day;

            }
        }

    }

    }

}

1 个答案:

答案 0 :(得分:1)

是的,您可以在此处重复使用其他方法。

public static void leastToGreates(int[] temps) {
    // copying the old array temps into newTempArr
    int[] newTempArr = new int[temps.length];
    for (int i = 0; i < temps.length; i++)
        newTempArr[i] = temps[i];

    int days = 0;
    while (days < temps.length) {
        int lowest = FindLowestTempInArray(newTempArr);
        if (newTempArr[lowest] > Uninitialized)
            System.out.println("temp: " + newTempArr[lowest] + ", on day: " + lowest);
        // setting the temperature of the current lowest day to "Uninitialized"
        // (so it's not the lowest temperature anymore)
        newTempArr[lowest] = Uninitialized;
        days++;
    }
}

我在这里做的是:

  • 复制温度数组(以便能够更改其中的值)而不影响原始数组
  • 打印阵列中的最低温度
  • 将该索引的温度设置为“未初始化”
  • 重复