-
Notifications
You must be signed in to change notification settings - Fork 0
/
vollkommen-template.cc
54 lines (47 loc) · 1.18 KB
/
vollkommen-template.cc
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
43
44
45
46
47
48
49
50
51
52
53
54
#include "fcpp.hh"
// (a)
bool teiler(int teiler, int zahl)
{
return (zahl % teiler == 0);
}
// (b) Eigentlich ist Schritt b überflüssig.
int teileranzahl(int index, int anzahl, int zahl)
{
// Ersetzen Sie die Null durch Ihren Code.
return (cond(index == 1,
anzahl += 1,
cond(teiler(index, zahl) == 1,
teileranzahl(index - 1, anzahl += 1, zahl),
teileranzahl(index - 1, anzahl = anzahl, zahl)
)
)
);
}
// (c)
int teilersumme(int index, int summe, int zahl)
{
return (cond(index == 1,
summe += 1,
cond(teiler(index, zahl) == 1,
teilersumme(index - 1, summe = summe + index, zahl),
teilersumme(index - 1, summe = summe, zahl)
)
)
);
}
// (d)
bool vollkommen(int zahl)
{
return (teilersumme(zahl - 1, 0, zahl) == zahl);
}
// (e)
int suchevollkommen(int zahl)
{
return (cond(vollkommen(zahl) == 1, zahl, suchevollkommen(zahl + 1)));
}
// (f)
int main(int argc, char *argv[])
{
return (print(suchevollkommen(497)));
}
// Die beiden nächstgrößeren vollkommenen Zahlen nach 28 sind 496 und 8128.