/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Igor */ public class MathUtils { static public int round(double a){ return (int) (((a+0.5)*10.0) / 10.0); } static public int round(float a){ return (int) (((a+0.5)*10.0) / 10.0); } };