This commit is contained in:
Simoes Lukas
2025-10-02 12:22:53 +02:00
parent be5ef16034
commit 56258c01e6
12 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import javax.swing.JLabel;
public class Main {
public static void main(String[] args) {
JLabel[] tab = new JLabel[5];
tab[0] = new JLabel("OK");
tab[1] = new JLabel("KO");
tab[2] = new JLabel("WOW");
tab[3] = new JLabel("LE NOMBRE LA");
tab[4] = new JLabel("OK");
System.out.println(Frequence.frequence(args));
System.out.println(Frequence.frequence(tab));
}
}