blob: 279345d38f929b0ec1619e92387c2499fce611b0 (
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
46
47
48
49
50
51
52
53
54
55
56
|
/**
*
*/
package de.fhswf.in.inf.java1.aufgabe8;
import java.util.ArrayList;
import java.util.List;
/**
* TODO Add comment here
*
* @author $Author: $
* @version $Revision: $, $Date: $ UTC
*/
public final class LottoZiehung
{
/**
* TODO Add constructor comment here
*
*/
private LottoZiehung()
{
// TODO Auto-generated constructor stub
}
/**
* TODO Add method comment here
*
* @param args
* Command line arguments.
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
List<Integer> lottoZahlen = new ArrayList<>(49);
for (int i = 1; i <= 49; i++)
{
lottoZahlen.add(i);
}
List<Integer> ziehung = FloydAndBentley.sample(lottoZahlen, 7);
Integer Sonderzahl = ziehung.get(6);
ziehung.remove(6);
ziehung.sort(null);
System.out.println(ziehung + " SonderZahl: " + Sonderzahl);
}
}
|