Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/02/2008, 16:26
Avatar de TheViejo
TheViejo
 
Fecha de Ingreso: marzo-2007
Ubicación: Delante de mi Vetusto PC.
Mensajes: 29
Antigüedad: 17 años, 7 meses
Puntos: 3
Re: Null Pointer en array

Prueba esto haber si te funciona :

Código PHP:
class Calcular {
    
Double med;
    
int i;
    
int total;
    
total arrayNumeros.length;
    public 
Double Media(Double[] arrayNumeros){
        for(
i=0i<totali++){
            
med+=arrayNumeros[i];
        }
        return 
med/total;
    }