關於Round函數的問題(編號:60)

dim a
a=100.5
print Round(a)
則結果為 100
dim a
a=100.52
print Round(a)
則結果為 101
為什麼要多個 0.0幾 才會進位呢??
疑惑............