Thursday 14 March 2013

Graphics gp


/*
<applet code= Line width=300 height=300>
</applet>
*/
import java.applet.Applet;
import java.awt.Graphics;
public class Line
extends Applet
{
public void paint(Graphics gp)
{
int x1=10, y1=25;
int x2=200, y2=230;
gp.drawLine(x1,y1,x2,y2);
gp.drawString("Line",20,270);
}
}

No comments:

Post a Comment