【已解决】请问如何把浮点数转成十六进制数。新人,才申请的ID
本帖最后由 kgd522 于 2010-12-31 11:50 编辑如题 ,比如把1234.5转成十六制数 自己顶一下 #AutoIt3Wrapper_Au3Check_Parameters= -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <WinAPI.au3>
Opt('MustDeclareVars', 1)
_Main()
Func _Main()
Local $float, $text, $INT
$float = 1234.5
$INT = _WinAPI_FloatToInt($float)
$text = "The float " & $float & " is converted to the Integer " & $INT & " (Hex = " & Hex($INT) & ")"
MsgBox(0, "_WinAPI_FloatToInt Example Results", $text)
$float=_WinAPI_IntToFloat($INT)
MsgBox(0,0,$float)
EndFunc ;==>_Main 本帖最后由 kgd522 于 2010-12-31 10:47 编辑
太谢谢了。昨天一天都在为这个烦。 这个很有用,谢谢
页:
[1]