-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBATIJOSK.PAS
41 lines (35 loc) · 876 Bytes
/
BATIJOSK.PAS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
program kasuba;
var
ckx, cky : byte;
pg, sum1, sum2 : word;
lent : array [1 .. 7, 1 .. 7] of byte;
sumos : array [1 .. 7, 1 .. 2] of word;
begin
for ckx := 1 to 7 do
write (' --');
writeln;
for cky := 1 to 7 do
begin
for ckx := 1 to 7 do
begin
pg := (cky - 1) * 7 + ckx;
lent [ckx, cky] := pg;
inc (sumos [cky, 1], pg);
inc (sumos [ckx, 2], pg);
write (pg : 4)
end;
writeln (' | ', sumos [cky, 1] : 4)
end;
for ckx := 1 to 7 do
write (' --');
writeln;
for ckx := 1 to 7 do
write (sumos [ckx, 2] : 4);
writeln;
for cky := 1 to 2 do
for ckx := 1 to 7 do
if sumos [ckx, cky] mod 2 = 0 then inc (sum1, sumos [ckx, cky])
else inc (sum2, sumos [ckx, cky]);
writeln;
writeln ('Nelyg - ', sum1, ' Lyg - ', sum2)
end.