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.
|
|
### Debugging Ergebnisse
## Übung 1
-erste Ausgabe ohne Debugging enter an integer number: 7 input: 7, Schleifenvariable: 2, Ergebnis 1 input: 7, Schleifenvariable: 3, Ergebnis 1 input: 7, Schleifenvariable: 4, Ergebnis 3 input: 7, Schleifenvariable: 5, Ergebnis 2 input: 7, Schleifenvariable: 6, Ergebnis 1 number 7 passed check: true
-Debugging mit Zahl : 45 next int = 45 i = 2 result = 1 next int = 45 i = 3 result = 0 "False" wird Returnt da result == 0
-Konsolenausgabe mit Zahl : 45 enter an integer number: 45 input: 45, Schleifenvariable: 2, Ergebnis 1 input: 45, Schleifenvariable: 3, Ergebnis 0 number 45 passed check: false
-Debugging mit Zahl : 47 nextInt = 47 i = 2 nextInt = 47 i = 3 nextInt = 47 i = 4 nextInt = 47 i = 5
-Konsolenausgabe mit Zahl : 47 enter an integer number: 47 input: 47, Schleifenvariable: 2, Ergebnis 1 input: 47, Schleifenvariable: 3, Ergebnis 2 input: 47, Schleifenvariable: 4, Ergebnis 3
## Übung 2
-Debugging mit Zahl : 45 nextInt = 23 Einträge Debug View : 3 Step over nextInt = 16 Einträge Debug View : 4
Step into nextInt = 16 Einträge Debug View : 5 Zeile: 34
|