DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Round In Java
Math.ceil(1.1); //Returns 2 Math.ceil(1.9); //Returns 2 Math.floor(1.1); //Returns 1 Math.floor(1.9); //Returns 1





