What is the difference?

what does here means floor and ciel in option 3 and option 4 respectively

floor and ceil are function in c++
floor gives next integer value
ceil gives prev integer value
4.4 => floor gives 5 and ceil gives 4

for more details
Floor and Ceil