vlad2012gta

1

Sep 24th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package lesson1;
  2.     import javax.swing.*;
  3. public class Prog1 {
  4.  
  5.     public static void main(String[] args) {
  6.        
  7.         JFrame okno = new JFrame();
  8.         okno.setTitle("Добро пожаловать");
  9.         okno.setBounds(0,0,1920,1080);
  10.         okno.setVisible(true);
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment