L
l0v3_y1n9
Unregistered / Unconfirmed
GUEST, unregistred user!
function StrEncrypt(s: string): string;
var
i: integer;
c: char;
begin
result := '';
for i := 1 to length(s) do
begin
c := s;
inc(c, $80);
result := result + c;
end;
end;
StrEncrypt(#$E5)得到字母"e",那么如何写逆向函数求得"e"就等于#$E5呢?
var
i: integer;
c: char;
begin
result := '';
for i := 1 to length(s) do
begin
c := s;
inc(c, $80);
result := result + c;
end;
end;
StrEncrypt(#$E5)得到字母"e",那么如何写逆向函数求得"e"就等于#$E5呢?