Assignemnt #42

Code


 /// Name: Daniel Nguyen
 /// Period: 6
 /// Program Name: Prog611 Program
 /// File Name: Prog611.java
 /// Date Finished: 9/9/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(2000, 200);
        f.setVisible(true);
    }
}


    

Picture of the output

Assignment 3
BACK HOME NEXT