package p4a; public class MainLinkedListPersoRemoveDecrementation { 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); } for (int i = nbOperation-1; i >= 0; i--) { linkedList.suppression(i); } } }