Advertisement
Kwintendr

Untitled

Nov 29th, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. import java.io.*;
  2. public class Werkclass {
  3.  
  4.     /**
  5.      * @param args
  6.      */
  7.     public static void main(String[] args) throws IOException{
  8.         int [] cijfers = {1,2,3,4,5,6};
  9.         int M = 7;
  10.         int N = 6;
  11.        
  12.        
  13.         Lotto.schrijfGegevens(Lotto.maakFormulier(cijfers, M, N), "Kwinten");
  14.         Lotto.leesGegevens("getallen.txt");
  15.         Lotto.controleer(Lotto.leesGegevens("getallen.txt"), cijfers);
  16.  
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement