Blogroll

This blog is created for education about engineering students.All the engineering students are get free downloadable books here. not only books and also different software also available here

6.a. Applet for display an image


Week 6 :
a) Develop an applet that displays a simple message.
//
import java.applet.*;
import java.awt.*;
public class AppletDemo extends Applet
{
public void paint(Graphics g)
{
g.setColor(Color.red);
g.drawString("BANDARI SRINIVAS INSTITUTE OF TECHNOLOGY ",70,70);
}
}

No comments:

Post a Comment

Total Pageviews