Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/CODER_T.PAS
2001-11-30 12:14:44 +01:00

57 lines
904 B
Plaintext
Raw Blame History

program Coder_Test;
uses Crt, Coder;
var org,x: string;
begin
TextColor(15);
TextBackground(0);
ClrScr;
Write('Zu verschl<68>sselnder Text: ');
ReadLn(org);
RSInit := Length(org) * 11;
WriteLn('RandSeed: ',RSInit);
WriteLn;
x := org;
WriteLn('OrdCode (co=true)');
OrdCode(x,code);
WriteLn(x);
OrdCode(x,decode);
WriteLn(x);
WriteLn;
x := org;
WriteLn('OrdCode (co=false)');
OrdCode(x,decode);
WriteLn(x);
OrdCode(x,code);
WriteLn(x);
WriteLn;
x := org;
WriteLn('SortCode (co=true)');
SortCode(x,code);
WriteLn(x);
SortCode(x,decode);
WriteLn(x);
WriteLn;
x := org;
WriteLn('SortCode (co=false)');
SortCode(x,decode);
WriteLn(x);
SortCode(x,code);
WriteLn(x);
WriteLn;
x := org;
WriteLn('Hebrew');
Hebrew(x);
WriteLn(x);
Hebrew(x);
WriteLn(x);
WriteLn;
end.