Applet Program To Draw Line

Applet Program to Draw line

Similar programs

import java.awt.*;
import java.applet.*;

public class Line extends Applet
{

public void init()
{
setBackground(Color.cyan);
setForeground(Color.blue);

}

public void paint(Graphics g)
{

g.drawLine(0,0,100,100);

g.drawLine(100,0,0,100);
g.drawLine(200,200,300,300);
g.drawLine(75,30,300,300);

}
}

Leave a Reply

Your email address will not be published. Required fields are marked *