An error occurred while loading the file. Please try again.
-
Thomas Lapp authoredf68edfac
Forked from
GOSSA JULIEN / P4a
24 commits ahead of the upstream repository.
MainTableauPersoAdd.java 268 B
package p4a;
public class MainTableauPersoAdd {
public static void main(String[] args) {
int nbOperation = Integer.parseInt(args[0]);
TableauPerso tabStd = new TableauPerso(nbOperation);
for (int i = 0; i < nbOperation; i++) {
tabStd.ajout(0, i);
}
}
}