Here you can find the source of round(float input)
static public int round(float input)
//package com.java2s; //License from project: Open Source License public class Main { static public int round(float input) { return Math.round(input); }//from ww w . ja va2s . c o m }