//An applet is typically embedded inside a web page
//It runs in the context of a browser
import java.awt.*;
import javax.swing.*;
public class HackDefence extends JApplet{
public void paint (Graphics g){
super.paint(g);
g.drawString("Introduction to applet", 25, 25);
}
}
OUTPUT:
No comments:
Post a Comment