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

public class MainTableauStdAdd {
	public static void main(String[] args) {
		int nbOperation = Integer.parseInt(args[0]);
		TableauStd tabStd = new TableauStd(nbOperation);

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