Guest User

Untitled

a guest
Feb 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import javax.swing.JFrame;
  2. import javax.swing.JOptionPane;
  3.  
  4. public class Krogi
  5. {
  6. public static void main(String[] args)
  7. {
  8. JFrame frame = new JFrame("Osem Krogov");
  9. KrogiK panel = new KrogiK();
  10. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11. frame.add(panel);
  12. frame.setLocationRelativeTo(null);
  13. frame.setSize(500,500);
  14. frame.setVisible(true);
  15. }
  16. }
Add Comment
Please, Sign In to add comment