import java.applet.*;
import java.awt.*;
public class star5 extends Applet{
public void init()
{
resize(590,590);
}
public void paint(Graphics g){
int x1=68,y=74,x,pancol;
int xx1=140,yy=10,xx;
g.setColor(Color.black);
g.drawRect(0,0,589,589);
g.fillRect(1,1,1,1);
g.setColor(Color.yellow);
for(int row=1;row<=10;row++){
y+=16;
x=x1+(row*8);
pancol=11-row;
for(int col=(2*pancol-1);col>=1;col--){
g.drawString("¡Ú",x,y);
x+=8;
}
}
for(int roww=1;roww<=10;roww++){
yy+=16;
xx=xx1-(roww*8);
for(int coll=1;coll<=(2*roww-1);coll++){
g.drawString("¡Ú",xx,yy);
xx+=8;
}
}
g.drawString("Star show of mac62 2001 6/30",125,320);
}}