Взял на сайте e volvo код задачи только для английского алфавита.
Переделать не получается на русский, помогите
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Memo1: TMemo;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
const
TPolibius: array['1' .. '8', '1' .. '8'] of char = ( //<----ВОТ ЗДЕСЬ
('_', 'А', 'Б', 'В', 'Г','Д', 'Е', 'Ё'),
('Ж', 'З', 'И','Й','К', 'Л','М', 'Н'),
('О','П', 'Р', 'С', 'Т', 'У','Ф', 'Х'),
('Ц','Ч', 'Ш', 'Щ','Ъ', 'Ы','Ь','Э'),
('Ю', 'Я', '0', '1','2', '3', '4','5'),
('6', '7', '8', '9', '(',')', '[', ']'),
('{', '}', '.', ',', ':',';', '?', '!'),
('-', '"', '+', '=', '№','%', '*', '/')
);
var
Form1: TForm1;
s: string;
implementation
{$R *.dfm}
function PolibiusEncipher(toCode: string): string;
var
i: integer;
ix, jx: char;
s: string;
begin
s := '';
for i := 1 to length(toCode) do begin
for ix := '_' to 'Ё' do
for jx := '_' to 'Ё' do
if TPolibius[ix, jx] = toCode[ i ] then begin
s := s + ix + jx; break;
end;
end;
PolibiusEncipher := s
end;
function PolibiusDecipher(toDecode: string): string;
var
i: integer;
s: string;
begin
s := '';
i := 1;
while i <= length(toDecode) do begin
s := s + TPolibius[toDecode[ i ], toDecode[succ(i)]];
inc(i, 2);
end;
PolibiusDecipher := s
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
s := PolibiusEncipher('POLIBIUS');
// writeln(s);
Memo1.lines.add(s);
Memo1.lines.add('s = '+ PolibiusDecipher(s));
end;
end.
Там где я пометил что надо написать чтобы работало для русского варианта, в оригинале там
array['A' .. 'E', 'A' .. 'E']
http://volvo71.narod.ru/faq_folder/code_text.htm
Спасибо!