Me preguntaba si alguien podría ayudarme a encontrar el valor máximo de un conjunto de variables y asignarlas a otra variable. Aquí hay un fragmento de mi código que puede ayudar a entender de lo que estoy hablando.Cómo encontrar el valor máximo del conjunto de variables
// Ask for quarter values.
System.out.println("What is the value of the first quarter?");
firstQuarter = input.nextDouble();
System.out.println("What is the value of the second quarter?");
secondQuarter = input.nextDouble();
System.out.println("What is the value of the third quarter?");
thirdQuarter = input.nextDouble();
System.out.println("What is the value of the fourth quarter?");
fourthQuarter = input.nextDouble();
//Tell client the maximum value/price of the stock during the year.
//maxStock = This is where I need help
System.out.println("The maximum price of a stock share in the year is: $" + maxStock + ".");
Me disculpo pensé que esto estaba en el foro de Java o algo parecido. –
@CodyBennett No se preocupe. He agregado la etiqueta Java para ti.Podría ayudar a obtener más respuestas si está buscando una respuesta diferente. – nybbler
Esta solución está rota como está escrita. Double.MIN_VALUE devuelve "el menor valor positivo diferente de cero del tipo double", que es un número muy cercano a 0, NO el doble negativo más grande posible. En cambio, se podría usar algo como Double.NEGATIVE_INFINITY o -Double.MAX_VALUE. – ulmangt