mardi 15 mars 2011

how to format a double value.

public static double formatDoubleNumber (double a){
        a = Math.round(a * Math.pow(10,2));         
        a = a/Math.pow(10,2); 
        return a;       
}

Aucun commentaire:

Enregistrer un commentaire