Código PHP:
public void vector(int [] r){
int A[]= new int[5];
A[1] = 1; A[2] = 2; A[3] = 3; A[4] = 4; A[5] = 5;
Math.max(int A[]); // SEGUN AQUI COMPARO LOS VALORES DEL ARRAY Y DEVUELVE EL MENOR LO CUAL NO HE PODIDO CONSEGUIR.
}
| ||||
Cita: Yo creo q el motivo por el cual no te funciona es por q el método max de la clase Math le estas enviando como argumento un arreglo; el método recibe como parametro dos datos de tipo numerico. Revisa el API de JAVA para q chequees como se implementa ese método.
Iniciado por urgido Hola... alo que he leído la función Math.max puede devolver el valor de distintas variables... lo que quiero es devolver el número máximo pero de un array. Aquí les muestro mi clase Código PHP: |
| ||||
En el API esta especificado el funcionamiento.... http://java.sun.com/j2se/1.4.2/docs/...lang/Math.html Cita: Tomando en cuenta esto, vemos que el metodo max, solo te compara dos numeros, y no un arreglo o coleccion o algo semejante. la forma correcta de uso seria:Math.max(double a, double b) Returns the greater of two double values. Math.max(float a, float b) Returns the greater of two float values. Math.max(int a, int b) Returns the greater of two int values. Math.max(long a, long b) Returns the greater of two long values. Math.max(29,100); y regresara 100! have funnnnnnn
__________________ Curso de Angular JS - Haremos una app de principio a fin |