This commit is contained in:
2024-03-18 13:54:22 +01:00
parent eb581c8a31
commit a28bef01d7
69 changed files with 855 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
import javax.swing.*;
import java.awt.*;
import compteur.Compteur;
public class Progression {
public static void main(String[] args) {
Compteur n = new Compteur();
for (int j = 0;j <= 5;j++)
n.plusUn();
for (int i = 5;i < 10;i++){
System.out.println(n.toString());
n.plusUn();
}
}
}