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/ITG/TEST1_02.PAS
2001-11-30 12:14:44 +01:00

30 lines
576 B
Plaintext
Raw Blame History

program SortName;
uses Crt;
var Nam: array[1..3] of string;
i: integer;
procedure Swap(var i1,i2: string);
var tmp: string;
begin
tmp := i1;
i1 := i2;
i2 := tmp;
end;
begin
for i:=1 to 3 do begin
Write('Geben Sie den ',i,'. Namen ein: ');
ReadLn(Nam[i]);
end;
if Nam[3]<Nam[1] then Swap(Nam[3],Nam[1]);
if Nam[2]<Nam[1] then Swap(Nam[2],Nam[1]);
if Nam[3]<Nam[2] then Swap(Nam[3],Nam[2]);
for i:=1 to 3 do begin
WriteLn('Name ',i,': ',Nam[i]);
end;
WriteLn('Bitte eine Taste dr<64>cken!');
ReadKey;
end.