Skip to content
Snippets Groups Projects
MainLinkedListPersoAddDebut.java 327 B
Newer Older
Thomas Lapp's avatar
Thomas Lapp committed
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);
		}
		

	}
}