summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehungMain.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehungMain.java')
-rw-r--r--src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehungMain.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehungMain.java b/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehungMain.java
deleted file mode 100644
index f4cb322..0000000
--- a/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehungMain.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/**
- *
- */
-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<Integer> l = new ArrayList<Integer>();
- l.add(1);
- System.out.println(FloydAndBentley.sample(l, 1).size());
- System.out.println(FloydAndBentley.sample2(l, 1).size());
-
- Lottery6OutOf49 spiel = new Lottery6OutOf49();
- spiel.nextDraw();
- List<Integer> ziehung = spiel.getLastDraw();
- Integer sonderzahl = spiel.getSuperzahl();
- System.out.println(ziehung + " SonderZahl: " + sonderzahl);
- }
-}