mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 10:19:30 +02:00
+ added
This commit is contained in:
parent
7f889b8529
commit
726b980f38
19
tests/webtbs/tw3104.pp
Normal file
19
tests/webtbs/tw3104.pp
Normal file
@ -0,0 +1,19 @@
|
||||
unit tw3104;
|
||||
|
||||
interface
|
||||
|
||||
implementation
|
||||
|
||||
{$S-}
|
||||
procedure MizExitProc;
|
||||
begin
|
||||
end;
|
||||
{$S+}
|
||||
|
||||
procedure InitExitProc;
|
||||
begin end;
|
||||
|
||||
begin
|
||||
end.
|
||||
|
||||
|
30
tests/webtbs/uw3103.pp
Normal file
30
tests/webtbs/uw3103.pp
Normal file
@ -0,0 +1,30 @@
|
||||
unit uw3103;
|
||||
|
||||
interface
|
||||
|
||||
const MaxArt = 2000;
|
||||
|
||||
type
|
||||
WordArr = array[1..MaxArt] of word;
|
||||
|
||||
var
|
||||
RefList : array[1..MaxArt] of string;
|
||||
Theorems : array[- 1..MaxArt,1..2] of byte;
|
||||
|
||||
implementation
|
||||
|
||||
procedure P;
|
||||
var lThNbr : WordArr;
|
||||
sArr : array[- 1..MaxArt] of Integer;
|
||||
pctTh : array[- 1..MaxArt] of real;
|
||||
k : integer;
|
||||
lThArr : array[- 1..MaxArt] of Integer;
|
||||
begin
|
||||
sArr[k] := k;
|
||||
if RefList[k] = 'A' then lThArr[- 1] := lThNbr[k];
|
||||
pctTh[k] := Theorems[k,1];
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user