Nama file : gambar_Segitiga.java
import java.awt.*;
import java.applet.*;
public class gambar_Segitiga extends Applet{
public void paint(Graphics g)
{
int x1[] = {75, 125, 25, 75};
int y1[] = {100, 175, 175, 100};
int x2[] = {225, 275, 175, 225};
int y2[] = {100, 175, 175, 100};
int n = 4;
int i = 0;
setBackground(Color.black);
g.setColor(Color.red);
g.drawPolygon(x1, y1, n);
g.setColor(Color.orange);
g.fillPolygon(x2, y2, n);
g.setColor(Color.yellow);
g.setFont(new Font("Helvetica", Font.PLAIN, 10));
g.drawString("ngejava.com", 123, 200);
}
}
Output
program dibuat menggunakan eclipse
selamat mencoba semoga bermanfaat ...
No comments:
Post a Comment