Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Exp4_St4:

import java.awt.*;
import javax.swing.*;
public class Exp4_StudAct4 extends JFrame
{
public Exp4_StudAct4()
{
setSize(300,350);
setTitle("My Frame");
setVisible(true);
}
public static void main(String args[])
{
Exp4_StudAct4 ob=new Exp4_StudAct4();
}
}
Output:

You might also like