怎样将10进制转换成16进制?不好意思,只有5分了。(5分)

  • 主题发起人 主题发起人 xxxxxxxx
  • 开始时间 开始时间
X

xxxxxxxx

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样将10进制转换成16进制?不好意思,只有5分了。
 
IntToHex(value,16);
 
you can also use
Format('%x',[value]);
 
hehe
一种是用一个函数,一种用格式转换。
 
delphi 中转换一般用xxtoxx格式。可看帮助。
 
Delhpi的帮助中
Unit

SysUtils

Category

numeric formatting routines

function IntToHex(Value: Integer
Digits: Integer): string;
function IntToHex(Value: Int64
Digits: Integer): string
overload;
example fir it
procedure TForm1.Button1Click(Sender: TObject);

begin
Edit2.Text := IntToHex(StrToInt(Edit1.Text), 6);
end;
 
format 也可以,
 
时间太久,强制结束。 wjiachun
 
后退
顶部