Code:
import java. awt. *;
import java. applet. *;
/*<applet code="rectsan"width=250
height=250></applet>*/
public class rectsan extends Applet
{
  public void paint (Graphics. g)
  {
    g. drawrect(10,10,40,50);
  } 
}
When I compile this program, I get the error like
rectsan. java:7:<identif ier> expected
public void paint (Graphics. g)...