Aufbau der Main Methode erstellt
main
Nicholas H. 2024-10-21 13:01:21 +02:00
parent 7ff09c1e53
commit 0163b7178a
1 changed files with 21 additions and 0 deletions

21
Main 100644
View File

@ -0,0 +1,21 @@
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
ShopVerwaltung shop = new ShopVerwaltung();
while (true) {
System.out.println("Online Shop:");
System.out.println("1. Produkte anzeigen");
System.out.println("2. Produkt zum Warenkorb hinzufügen");
System.out.println("3. Warenkorb überarbeiten");
System.out.println("4. Warenkorb anzeigen");
System.out.println("5. Bestellung tätigen");
System.out.println("6. Alle Bestellungen anzeigen");
System.out.println("7. Programm beenden");
System.out.print("Auswahl tätigen: ");
}
}
}