2016-11-18 18:06:16 +00:00
|
|
|
import java.util.Scanner;
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
public class Test{
|
|
|
|
public static void main(String [] args) throws Exception{
|
2016-11-19 10:46:30 +00:00
|
|
|
Scanner scDipendenti = new Scanner(new File("dipendenti.dat"));
|
|
|
|
Scanner scOreLavoro = new Scanner(new File("presenze.dat"));
|
2016-11-18 18:06:16 +00:00
|
|
|
Azienda azienda = new Azienda(scDipendenti, scOreLavoro);
|
|
|
|
azienda.print(System.out);
|
|
|
|
}
|
|
|
|
}
|