/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package loting;
import java.util.Arrays;
import java.util.Collections;
import java.util.Random;
import javax.swing.JOptionPane;
/**
*
* @author Nelis
*/
public class Loting {
public static void main(String[] args) {
Random r = new Random();
String[] deelnemers = new String[]
{"nelis01", "arneeuh", "tommyheylen",
"supervoet","maxim baeyens", "b3h3moth",
"Jedddd", "robbens11", "fcb18fcb18",
"mathie leplaeS2", "noobinho",
"lilspanyol" ,"dario96", "EskimoStripper"
, "Avenation", "Jerre89",
"numberseven", "twoen"
};
String[] ploegen = {"Heracles Almelo", "De Graafschap",
"FC Utrecht", "RKC Waalwijk ",
"FC Twente", "Excelsior",
"Vitesse", "SC Heerenveen", "Roda JC ", "NAC Breda",
"VVV-Venlo", "AZ"
, "FC Groningen", "Ajax",
"Feyenoord", "ADO Den Haag", "NEC" , "PSV"
};
Collections.shuffle( Arrays.asList(ploegen));
for (int i = 0; i < ploegen.length; i++)
{
System.out.println(ploegen);
}
System.out.println();
Collections.shuffle(Arrays.asList(deelnemers));
for (int i = 0 ; i < deelnemers.length; i++)
{
System.out.println(deelnemers);
}
}
}