Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package sample;
  2.  
  3. import javax.swing.JFrame;
  4. import java.awt.GraphicsConfiguration;
  5.  
  6. public class Frms2 {
  7.  
  8. static GraphicsConfiguration GC;
  9.  
  10.  
  11. public static void main(String[] args){
  12.  
  13. JFrame frames = new JFrame(GC);
  14. frames.setTitle("Welcome to My Program Number 2!");
  15. frames.setSize(400, 600);
  16. frames.setVisible(true);
  17.  
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement