Skip to content
Snippets Groups Projects
MainLinkedListStd.java 299 B
Newer Older
package p4a;

public class MainLinkedListStd {

	public static void main(String[] args) {
		LinkedListStd<Integer> linkedListStd = new LinkedListStd<Integer>();
		int taille = Integer.parseInt(args[0]);
		
		for (int i = 0; i < taille; i++) {
			linkedListStd.ajout(i, 0);
		}

	}

}