E
ejb
Unregistered / Unconfirmed
GUEST, unregistred user!
function CharToHex( c:char):integer;
begin
if(c >= 'a') and (c <= 'f') then
result:= c - 'a' + 10;
if( c >= 'A') and (c <= 'F') then
result:= c - 'F' + 10;
if( c >= '0') and (c <= '9') then
result:= c - '0';
result:= 0;
end;
以上代码为什么编译错误?
另外在c++builder 中函数_istxdigit什么功能在delphi中有同样功能的函数ma?
begin
if(c >= 'a') and (c <= 'f') then
result:= c - 'a' + 10;
if( c >= 'A') and (c <= 'F') then
result:= c - 'F' + 10;
if( c >= '0') and (c <= '9') then
result:= c - '0';
result:= 0;
end;
以上代码为什么编译错误?
另外在c++builder 中函数_istxdigit什么功能在delphi中有同样功能的函数ma?