-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-pythagoreischesTripel.alg
42 lines (38 loc) · 1.14 KB
/
2-pythagoreischesTripel.alg
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
42
begin
comment Dieses Programm findet mit einfachen Brute-Force die ersten drei Lösungen;
comment bis zu einer reellen Zahl n für ein pythagoreisches Zahlentripel;
integer array A [1 : 9];
integer itA;
itA := 1;
procedure aAdd(a, b, c);
integer a, b, c;
begin
if itA ≤ (9 - 3) then begin
A[itA] := a;
itA := itA + 1;
A[itA] := b;
itA := itA + 1;
A[itA] := c;
itA := itA + 1;
end;
end;
procedure pytripelPruefung(a, b, c, j);
integer a, b, c; procedure j;
begin
if (a*a + b*b = c*c) then begin
j(a, b, c);
end;
end;
procedure pytripel(n);
value n; real n;
integer fitA, fitB, fitC;
begin
for fitA := 1 step 1 until n do begin
for fitB := 1 step 1 until n do begin
for fitC := 1 step 1 until n do begin
pytripelPruefung(fitA, fitB, fitC, aAdd)
end;
end;
end;
end;
end;