Kamis, 22 November 2012

"Download" Film Elf-Man (2012) Free

Rilis: 2012 Jenis: Comedy | Family Bintang: Jeffrey Combs, Jason ‘Wee Man’ Acuña, and Mackenzie Astin Subtitle: Indonesia, English Sinopsis: An Elf is left behind by Santa to help rescue the Harper family from a lousy Christmas. The Elf and the family get more than they bargained for, as the kids help the Elf discover his special powers and true identity as a budding superhero. Watch Trailer Download Elf Man (2012) DVDRip 350MB Ganool Download Film Elf-Man (2012) Kllik pada link download dibawah ini, pilih server mirror yang anda sukai: IDUP.IN Silakan di link ini Silakan link ini II BACKUP: All file film
Read more »»  

The excellence Spirit

Seruhnya Nonton Film ini jadi Inspirasi buat saya, dengan Percaya diri kemenangan di Pihak kita jika kita tidak berlaku Curang... Nonton Yuck Brow Dari kisah ini Bisa menjadi Inspirasi buat kita Semua Lhoooo :D
Read more »»  

Rabu, 21 November 2012

Tugas listing dengan hasil outputnya

package penggunaanawt; import java.awt.*; import java.awt.event.*; public class AWTDemo extends Frame implements ActionListener{ int x = 100; int y = 100; public static void main(String[] args) { Frame frame = new AWTDemo(); frame.setSize(640, 480); frame.setVisible(true); } public AWTDemo() { setTitle("AWT Demo"); // 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.black); 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); } } } www.sukses.com
Read more »»  

Minggu, 18 November 2012

contoh sederhana koding program dengan hasil runnya

package penggunaanawt; import java.awt.*; import java.awt.event.*; public class AWTDemo extends Frame implements ActionListener{ int x = 100; int y = 100; public static void main(String[] args) { Frame frame = new AWTDemo(); frame.setSize(640, 480); frame.setVisible(true); } public AWTDemo() { setTitle("AWT Demo"); // 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.setColor(Color.black); g.fillRect(150,150,125,150); g.setColor(Color.white); g.drawString("OPELET",190,250); g.setColor(Color.black); g.drawLine(x +240,150 , 200 , 150); g.drawLine(x +300,300 , 270 ,300); g.drawLine(x +300,230,x +300,300); g.drawLine(x +270,230,x +300,230); g.drawLine(x +270,230,x +240,150); g.setColor(Color.red); g.fillRect(160,160,50,50); g.fillRect(x +115,160,50,50); g.fillRect(x +185,160,50,50); g.setColor(Color.blue); g.fillOval(190, 270, 50, 60); g.fillOval(330, 270, 50, 60); } public void actionPerformed(ActionEvent ev) { String command = ev.getActionCommand(); if ("Exit".equals(command)) { System.exit(0); } } }
Read more »»