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