APL/APL2.1/TP05/Progression/Progression.java

10 lines
249 B
Java
Raw Normal View History

2022-02-08 17:20:59 +01:00
public class Progression {
public static void main(String[] args) {
Compteur cp = new Compteur();
for (int i = 0; i < 9; i++) {
cp.plusUn();
if (i > 3) System.out.println(cp.toString());
}
}
}