村
村长.net
Unregistered / Unconfirmed
GUEST, unregistred user!
ecode:='123';
function encrypt(ecode:string):string;
var
texts:string;
i:byte;
begin
texts:='';
for i:=1 to length(ecode) do
texts:=texts + chr(ord(ecode)+i);
encrypt := texts;
end;
function encrypt(ecode:string):string;
var
texts:string;
i:byte;
begin
texts:='';
for i:=1 to length(ecode) do
texts:=texts + chr(ord(ecode)+i);
encrypt := texts;
end;