if you want to round it business like, you can try this (I think it was already ask somewhere though)
PRINT round(5.434344), 0, 0
PRINT round(5.66344), 0, 20
SHOWSCREEN
KEYWAIT
// ------------------------------------------------------------- //
// --- ROUND% ---
// ------------------------------------------------------------- //
FUNCTION round%: p_num
RETURN INTEGER(p_num + .5)
ENDFUNCTION // ROUND%