Rabu, 28 November 2012

Contoh Listing Sederhana Kombinasi Warna Smile Berkedip Menggunakan Aplikasi netbeans 7.0.1

package pertemuanvi;

import java.awt.*;
import java.awt.event.*;
public class PertemuanVI extends Frame implements ActionListener{
    int x = 100;
    int y = 100;
public static void main(String[] args) {
    Frame frame = new PertemuanVI();
    frame.setSize(640, 480);
    frame.setVisible(true);
}
public PertemuanVI() {
setTitle("Pertemuan VI");
// create menu
    MenuBar mb = new MenuBar();
    setMenuBar(mb);
    Menu menu = new Menu("File");
    mb.add(menu);
    MenuItem mi = new MenuItem("Exit");
    mi.addActionListener(this);
    menu.add(mi);
// end program when window is closed
    WindowListener l = new WindowAdapter()  {
    public void windowClosing(WindowEvent ev) {
    System.exit(0);
    }
    };
this.addWindowListener(l);
// mouse event handler
MouseListener mouseListener = new MouseAdapter() {
public void mouseClicked(MouseEvent ev) {
    x = ev.getX();
    y = ev.getY();
    repaint();
}
};
addMouseListener(mouseListener);
}

public void paint(Graphics g) {

g.drawOval(120,140,200,200);
int jumlah=1;
while (jumlah <=5){
    g.drawArc(180,260,90,60,180,180);
    int jumlah2=1;
    while (jumlah2<=1000000000){
        jumlah2++;
    }
    jumlah++;

g.drawArc(160,190,50,20,-180,-180);
g.drawArc(240,190,50,20,-180,-180);
g.drawArc(180,260,90,60,180,180);
g.setColor(Color.blue);
g.fillOval(240,210,50,20);
g.fillOval(160,210,50,20);
}
}

public void actionPerformed(ActionEvent ev) {
String command = ev.getActionCommand();
if ("Exit".equals(command)) {
System.exit(0);
}
}
}

Berikut hasil outputnya :




sedikit penjelasan :
jika ingin merubah/mengkombinasikan warna cukup blogger mania ketik g.drawfill, g.drawrect atau apapun terus di bawah listingnya ketik setColor (blue) atau bisa lainnya. Cuma itu yang bisa saya bagikan. Thanks.

1 komentar:

  1. Baccarat Basics - Worrione
    The simplest is the number of rounds (called single 바카라 사이트 numbers). 카지노사이트 If 1xbet korean the number of bets in your bet at the beginning of a game is greater than the total bet.

    BalasHapus