You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
512 B
20 lines
512 B
# Uebung Debugging
|
|
|
|
##Uebung1
|
|
Das Programm ist ein Primzahlen Rechner.
|
|
Immer wenn die Zahl eine Primzahl ist kommt true.
|
|
Falls die Zahl negativ ist kommt false.
|
|
|
|
Inhale der Variablen:
|
|
Input: 45, Schleifenvariable: 2, Ergebnis 1
|
|
Input: 45, Schleifenvariable: 3, Ergebnis 0
|
|
number 45 passed check : false
|
|
|
|
Input 47, Schleifenvariable: 43, Ergebnis 4
|
|
Input 47, Schleifenvariable: 44, Ergebnis 3
|
|
Input 47, Schleifenvariable: 45, Ergebnis 2
|
|
Input 47, Schleifenvariable: 46, Ergebnis 1
|
|
number 47 passed check: true
|
|
|
|
|
|
|