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.

26 lines
304 B

1 year ago
  1. ### Übung Debugging
  2. ### Übung 1
  3. * Eingabe : 45
  4. * nextInt = 45
  5. * i = 2
  6. * continue:
  7. * nextInt = 45
  8. * i = 3
  9. * Eingabe : 47
  10. * nextInt = 47
  11. * i = 2
  12. * continue:
  13. * nextInt = 47
  14. * i = 3
  15. continue:
  16. * nextInt = 47
  17. * i = 4
  18. ### Übung 2
  19. * Eingabe : 45
  20. * nextInt = 23
  21. * Zeile 40 :
  22. * nextInt = 16