DEV/BUT1/DEV2.1/TEMPLATE.JAVA

12 lines
280 B
Plaintext
Raw Permalink Normal View History

2024-02-09 20:01:31 +01:00
import javax.swing.*;
import java.awt.*;
public class NOM_FICHIER{
public static void main(String[] args){
// Création d'une fenêtre + configuration
JFrame fenetre = new JFrame();
fenetre.setSize(500, 500);
fenetre.setVisible(true);
}
}