Upload files to "DEV.2.1/CM-blanc/CM-1"

This commit is contained in:
2025-03-18 14:39:16 +01:00
parent 55c5bd797b
commit 673a4f3f19
2 changed files with 22 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);
}
}