Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package ta;
  2.  
  3. import javax.swing.JFrame;
  4.  
  5. public class Linears extends JFrame {
  6. Linears() {
  7. initGUI();
  8. }
  9.  
  10. private void initGUI() {
  11. this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  12. this.setSize(800, 600);
  13. this.setResizable(false);
  14. this.setLocationRelativeTo(null);
  15. this.setTitle("Гетман - Пересечение прямых");
  16.  
  17.  
  18.  
  19. this.setVisible(true);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement