Skip to content
Snippets Groups Projects
MainLinkedListPersoAddFin.java 301 B
Newer Older
package p4a;

public class MainLinkedListPersoAddFin {
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, i);