26 lines
323 B
Markdown
26 lines
323 B
Markdown
#### Lösung
|
|
a)
|
|
```Groovy
|
|
def zahl = 5
|
|
def ergebnis = 1
|
|
|
|
for (int i = 1; i <= zahl; i++) {
|
|
ergebnis *= i
|
|
}
|
|
|
|
println("Die Fakultät von $zahl ist: $ergebnis")
|
|
```
|
|
|
|
b)
|
|
```Groovy
|
|
def zahl = 5
|
|
def ergbenis = 1
|
|
def i = 1
|
|
|
|
while (i <= zahl) {
|
|
ergebnis *= i
|
|
i++
|
|
}
|
|
|
|
println("Die Fakultät von $zahl ist: $ergebnis")
|
|
``` |