如何在actionscript中舍入数字

Yan*_*Yan 1 flash actionscript-3 flash-cs4 flash-cs5

我怎样才能将数字向上舍入为0.5或使用动作脚本3.0为例

  • 4.9将四舍五入为5
  • 4.7将四舍五入为4.5
  • 2.4将四舍五入为2.5
  • 2.3将四舍五入为2

谢谢.

Del*_*ani 8

怎么样

Math.round(2 * number_here) / 2
Run Code Online (Sandbox Code Playgroud)