Display "All the Best"

CODE:
import java.awt.*;
import java.applet.*;
/*
<APPLET CODE="Best.class" WIDTH=100 HEIGHT=200>
</APPLET>
*/
public class Best extends Applet
{
public void paint(Graphics g)
{
g.drawString("All the Best",20,20);
}

}
OUTPUT:



No comments :

Post a Comment