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.

74 lines
1.1 KiB

1 year ago
  1. ## Exercise 1
  2. enter an integer number: 100
  3. Mit:
  4. input: 100, Schleifenvariable: 2, Ergebnis 0
  5. nextInt = 45
  6. i = 2 , nextInt= 45
  7. resume
  8. i = 3
  9. input: 45, Schleifenvariable: 2, Ergebnis 1
  10. input: 45, Schleifenvariable: 3, Ergebnis 0
  11. //
  12. nextInt = 47 , i = 2
  13. input: 47, Schleifenvariable: 2, Ergebnis 1
  14. input: 47, Schleifenvariable: 3, Ergebnis 2
  15. input: 47, Schleifenvariable: 4, Ergebnis 3
  16. //
  17. ---
  18. ## Exercise 2
  19. Vorher
  20. enter an integer number: 100
  21. number 100 passed check: false
  22. mit Zahl 45:
  23. nextInt = 23
  24. count = 3
  25. - in welcher Zeile steht der Debugger?
  26. Zeile 40
  27. - Notieren Sie die Anzahl der Einträge in der
  28. private boolean checkNumber(int nextInt) { // nextInt = 16
  29. nextInt = nextInt - (nextInt / count); // nextInt = 16 , count = 4
  30. count++; // count = 4
  31. return checkNumber(nextInt); // nextInt = 16
  32. - in welcher Zeile steht der Debugger?
  33. Zeile 40
  34. - Notieren Sie die Anzahl der Einträge in der Debug View
  35. private boolean checkNumber(int nextInt) { // nextInt = 23
  36. nextInt = nextInt - (nextInt / count); // nextInt = 23, count = 3
  37. count++; // count = 3
  38. return checkNumber(nextInt); // nextInt = 23