package p4a; import java.util.Random; public class MainTableauPersoGet { public static void main(String[] args) { Random rnd = new Random(); int nbOperation = Integer.parseInt(args[0]); TableauPerso tab = new TableauPerso(nbOperation); for (int i = 0; i < nbOperation; i++) { tab.ajout(0, i); } for (int i = 0; i < nbOperation; i++) { tab.acces(rnd.nextInt(nbOperation)); } } }