Merge branch 'main' of grond.iut-fbleau.fr:srivasta/DEV

This commit is contained in:
Emmanuel Srivastava
2025-04-03 10:50:35 +02:00
6 changed files with 81 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,10 @@
import java.awt.*;
import javax.swing.*;
public class Main {
public static void main(String[] args) {
Fenetre fenetre = new Fenetre();
fenetre.setVisible(true);
}
}

Binary file not shown.

Binary file not shown.