/** * */ package de.fhswf.in.inf.java1.aufgabe8; import java.util.List; /** * Main class for the LottoZiehung. * * @author $Author: $ * @version $Revision: $, $Date: $ UTC */ public final class LottoZiehungMain { /** * Private constructor for utility class. * */ private LottoZiehungMain() { } /** * Main function of the package. * * @param args * Command line arguments. */ public static void main(String[] args) { Lottery6OutOf49 spiel = new Lottery6OutOf49(); List ziehung = spiel.getLastDraw(); Integer sonderzahl = spiel.getSuperzahl(); System.out.println(ziehung + " SonderZahl: " + sonderzahl); } }