Skip to content
Snippets Groups Projects
Forked from GOSSA JULIEN / P4a
41 commits ahead of the upstream repository.
MainLinkedListPersoAddDebut.java 321 B
package p4a;

public class MainLinkedListPersoAddDebut {

	public static void main(String[] args) {
		
		LinkedListPerso<Integer> linkedList = new LinkedListPerso<Integer>();
		int nbOperation = Integer.parseInt(args[0]);

		for (int i = 0; i < nbOperation; i++) {
			linkedList.ajout(0, 0);
		}
		

	}
}