/** * */ package de.fhswf.in.inf.java1.aufgabe8; import java.util.ArrayList; 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) { List lottoZahlen = new ArrayList<>(49); for (int i = 1; i <= 49; i++) { lottoZahlen.add(i); } List ziehung = FloydAndBentley.sample(lottoZahlen, 7); Integer Sonderzahl = ziehung.get(6); ziehung.remove(6); ziehung.sort(null); System.out.println(ziehung + " SonderZahl: " + Sonderzahl); } }