i have a result "1.444444" and i want to round this result to "1.5" this is the code i use :
a.text = String(round(13000 / 9000.0))
but this is round to "1.0" and i need round to "1.5"
and this code :
a.text = String(ceil(13000 / 9000.0))
is round to "2.0"