blob: 32cb84181aaddc6f3ef4f0c0f5cd9df1f5ba12b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/**
*
*/
package de.fhswf.in.inf.java1.aufgabe08;
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);
}
}
|