Skip to content
Snippets Groups Projects
MainLinkedListPerso.java 309 B
Newer Older
package p4a;

public class MainLinkedListPerso {

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

		for (int i = 0; i < taille; i++) {
			linkedListStd.ajout(i, 0);
		}
		

	}
}