Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. class Main{
  4. public static void main(String[] args) {
  5. f1 frame = new f1("f1");
  6. System.out.println("hello!!!!");
  7.  
  8. }
  9. }
  10.  
  11. class f1 extends JFrame{
  12. f1(String title){
  13. setTitle("f1");
  14. setBounds(200, 200, 400, 320);
  15. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  16. setVisible(true);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement