0

私は、整数入力のシーケンスを読み取り、入力の最小値と最大値、および偶数入力と奇数入力の数を出力するプログラムを作成するように割り当てられました。

私は最初の部分を理解しましたが、プログラムで最大と最小を表示する方法に困惑しています。これはこれまでの私のコードです。最小の入力も表示するにはどうすればよいですか?

public static void main(String args[])
{
      Scanner a = new Scanner (System.in);
      System.out.println("Enter inputs (This program calculates the largest input):");

      double largest = a.nextDouble();
      while (a.hasNextDouble())
      { 
          double input = a.nextDouble();
          if (input > largest)
          {
              largest = input;
          }
      }


      System.out.println(largest);
}
4

3 に答える 3

8

最も簡単な解決策は、次のようなものを使用することですMath.minMath.max

double largest = a.nextDouble();
double smallest = largest;
while (a.hasNextDouble()) {
    double input = a.nextDouble();
    largest = Math.max(largest, input);
    smallest = Math.min(smallest, input);
}
于 2013-03-10T23:06:32.053 に答える
2
double largest = a.nextDouble();
double smallest = largest;
while (a.hasNextDouble()) {
    double input = a.nextDouble();
    if (input > largest) {
        largest = input;
    }
    if (input < smallest) {
        smallest = input;
    }
}
于 2013-03-10T23:01:53.173 に答える
1

同じ方法で最小値を追跡します。

public static void main(String args[])
{
    Scanner a = new Scanner (System.in);
    System.out.println("Enter inputs (This program calculates the largest and smallest input):");

    double firstInput = a.nextDouble();
    double largest = firstInput;
    double smallest = firstInput;
    while (a.hasNextDouble())
    { 
        double input = a.nextDouble();
        if (input > largest)
        {
            largest = input;
        }
        if (input < smallest)
        {
            smallest = input;
        }
    }

    System.out.println("Largest: " + largest);
    System.out.println("Smallest: " + smallest);
    }
}
于 2013-03-10T23:03:13.007 に答える