This commit is contained in:
Emmanuel Srivastava
2025-03-17 14:53:58 +01:00
11 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import javax.swing.*;
import java.awt.*;
public class Fenetre extends JFrame {
public Fenetre() {
super("Declinaisons");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(500,500);
this.setLocation(500,250);
}
}