This post originated from an RSS feed registered with Java Buzz
by Arpit Mandliya.
Original Post: Java Math floor example
Feed Title: Java tutorial for beginners
Feed URL: http://feeds.feedburner.com/arpitmandliyasblog
Feed Description: A blog about java programming language and its frameworks
Java math floor function is used to get largest integer which is lesser than number. Syntax Example Let’s use math’s floor function in the example. When you run above program, output of the program will be: Ceil value for 2.6 = 3.0 Ceil value for 26.1 = 27.0 Ceil value for -0.8 = -0.0 Ceil value for -6.2 = -6.0 Ceil value for 4.6f = 5.0 Few points about Math.ceil function: In case of Nan or infinity or zero, it will give you same result as argument. If you pass a value which is already equal to integer,