Advertisement
Guest User

Untitled

a guest
Aug 1st, 2016
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. import javax.swing.*;
  2.  
  3. public class SecondSimple {
  4.     public static void main (String args[]) {
  5.         new MyFrame();
  6.     }
  7. }
  8.  
  9. class MyFrame extends JFrame {
  10.     public MyFrame() {
  11.         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  12.         setSize(300,200);
  13.         setLocation(300,200);
  14.         setVisible(true);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement