Assignment #42 and Thirty-Ninth Program

Code

        /// Name: Georgi Atanasov
        /// Period: 5
        /// Program Name: A Boring Window
        /// File Name: BoringWindow.java
        /// Date Finished: 12/1/2015
    
    import javax.swing.*;

    public class BoringWindow extends JFrame
    {
        public static void main( String[] args )
        {
            JFrame f = new BoringWindow();
            f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            f.setSize(300, 200);
            f.setVisible(true);
        }
    }


    

Picture of the output

Assignment 42