An error occurred while loading the file. Please try again.
-
Thomas Lapp authoredc949589e
Forked from
GOSSA JULIEN / P4a
41 commits ahead of the upstream repository.
MainArrayListPersoAddFin.java 292 B
package p4a;
public class MainArrayListPersoAddFin {
public static void main(String[] args) {
ArrayListPerso<Integer> arraylist = new ArrayListPerso<Integer>();
int nbOperation = Integer.parseInt(args[0]);
for (int i = 0; i < nbOperation; i++) {
arraylist.ajout(0, i);
}
}
}