Advertisement
dcj123

jcalc.java

Nov 6th, 2015
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class jcalc
  4. {
  5.     public static void main( String[] args)
  6.     {
  7.         jcalcframe gridBagFrame = new jcalcframe();
  8.         gridBagFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
  9.         gridBagFrame.setSize( 300, 300 );
  10.         gridBagFrame.setVisible( true );
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement