0
在我的筆記我有類似IEEE 754的浮點舍入到最接近
If (Guard & !Round & !Sticky)
If (LSB == 1)
LSB += 1
Else If (Guard)
LSB += 1
End If
所以我可能只是它簡化爲
If Guard Then
LSB += 1
在我的筆記我有類似IEEE 754的浮點舍入到最接近
If (Guard & !Round & !Sticky)
If (LSB == 1)
LSB += 1
Else If (Guard)
LSB += 1
End If
所以我可能只是它簡化爲
If Guard Then
LSB += 1
什麼這種情況下號?
Guard==true
Sticky==false
Round==false
LSB==0
原始代碼將不在這種情況下執行LSB += 1
,你會的。
Err ...等待是我的第一個代碼塊錯誤?如果'Guard&Sticky&!LSB',它會執行'LSB + = 1'?或者你的意思是'Guard&!Sticky&!LSB'? –
@ jiewmeng:你說得對,我的意思是'!粘滯&圓形' –