13 lines
		
	
	
		
			243 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			243 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| 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);
 | |
|  
 | |
| 	}
 | |
| } |