Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2. Schleifen: Alle Fenster schließen #2

Open
mzl-md opened this issue Nov 25, 2021 · 0 comments
Open

2. Schleifen: Alle Fenster schließen #2

mzl-md opened this issue Nov 25, 2021 · 0 comments

Comments

@mzl-md
Copy link
Owner

mzl-md commented Nov 25, 2021

Aufgabe

Erweitere die main-Methode in der Town-Klasse mit einer Schleife, die alle Fenster schließt.
Gib in einer weiteren Schleife für jedes Fenster mit System.out.println aus, ob es geöffnet ist.

public class Town {

    House martinsHouse = new House()
    // TODO: Rufe martinHouse.closeWindow(windowIndex) in einer Schleife auf,
    // sodass alle gültigen Werte für windowIndex eingesetzt werden

    // TODO: Öffne das Fenster mit windowIndex 2

    // TODO: Rufe martinHouse.isWindowOpen(windowIndex) in einer Schleife auf
    // und gib das Ergebnis mit System.out.println() aus. Die Ausgabe sollte auch enthalten, 
    // für welches Fenster sie gilt. Also:
    // Fenster 0 ist offen: false
    // Fenster 1 ist offen: false
    // Fenster 2 ist offen: true
    // Fenster 3 ist offen: false

}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant