Code: Select all
FUNCTION Start() AS VOID
LOCAL IMPLIED afw := MidpointRounding.AwayFromZero
? Math.Round(65.305,2 , afw) // 65,31
? Math.Round(65.315,2 , afw) // 65,32
? Math.Round(65.325,2 , afw) // 65,33
? Math.Round(65.335,2 , afw) // 65,33
? Math.Round(65.345,2 , afw) // 65,35
? Math.Round(65.355,2 , afw) // 65,36
? Math.Round(65.365,2 , afw) // 65,36
? Math.Round(65.375,2 , afw) // 65,38
? Math.Round(65.385,2 , afw) // 65,39