Skip to content
Snippets Groups Projects
MainTableauPersoAdd.java 262 B
Newer Older
package p4a;

public class MainTableauPersoAdd {
	public static void main(String[] args) {
		int nbOperation = Integer.parseInt(args[0]);
		TableauPerso tab = new TableauPerso(nbOperation);

		for (int i = 0; i < nbOperation; i++) {
			tab.ajout(0, i);