Rabu, 17 November 2010

Hotel Julius

Membuat Project Hotel Julius Caesar

Langkah pertaman iyalah membuat project Master Mahasiswa

1. Pilih menu File >>New Project

2. Di kolom Categories pilih Java dan dikolom Project pilih Java Application. Selanjutnya pilih tombol Next.

3. Maka akan muncul jendela dialog New Java Application. Isikan parameter-parameter berikut

  • Project Name : HotelJulius
  • Project Location : Pilih letak letak lokasi penyimpanan dengan memilih tombol Browse.

4. Pilih tobol Finish untuk memproses pembuatan Proyek DataMahasiswa

Setelah membuat sebuah proyek, selanjutnya adalah menambahkan file Java dengan container jFrame. Untuk membuatnya ikuti langkah berikut :

1. Klik kanan pada Project DataMahasiswa>> New >> JFrame Form

2. Pada jendelah New JFrame Form isikan parameter-parameter berikut :

  • Class Name : HotelCaesar
  • Package : hoteljulius
Pilih tombol Finish

jRadioButton1 = rdioEksklusif

jRadioButton2 = rdioBisnis

jRadioButton3 = rdioEkonomis

buttonGroup1 = buttonGroup1

JComboxBox1 = CombLantai

JTexField2 = txtSelama

JTexField3 = txtDiskon

JTexField4 = txtHarga

JTexField5 = txtPenari

JTexField6 = txtPijat

JTexField7 = txtKaroke

JTexField8 = txtHiburan

JTexField9 = txtTotal

JTexField10 = txtPembayaran

JLabel11 = LabelKembali



Sebelum kita membuat Source Code dari masing-masing Event Palette-nya, terlebih dahulu kita membuat sebuah Variabel Public yaitu sebagai berikut :

* Created on Nov 14, 2010, 8:09:49 PM

*/

package hoteljulius;

import javax.print.DocFlavor.STRING;

import javax.swing.JOptionPane;

/**

*

* @author RUSIA

*/

public class HotelCaesar extends javax.swing.JFrame {

int Exklusif,Bisnis,Ekonomis,totalharga,total,diskon,penari,mijit,karoke,hiburan;

/** Creates new form HotelCaesar */

public HotelCaesar() {

initComponents();

}

Setelah membuat variable public, langkah selanjutnya iyalah membuat Source Code pada masing-masing Event

Untuk Event----“txtSelama”----- [ ketika tekan Enter maka proses ini akan dijalankan ]

private void txtSelamaActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

int selama = Integer.parseInt(txtSelama.getText());

if((selama <= 7)&& (CombLantai.getSelectedItem().equals("---Pilih---")))

{

JOptionPane.showMessageDialog(null,"Anda belum memilih lantainya...!");

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 1")) && (rdioEksklusif.isSelected()))

{

txtHarga.setText("500000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 2")) && (rdioEksklusif.isSelected()))

{

txtHarga.setText("550000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 3")) && (rdioEksklusif.isSelected()))

{

txtHarga.setText("560000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 1")) && (rdioEksklusif.isSelected()))

{

txtHarga.setText("500000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 2")) && (rdioEksklusif.isSelected()))

{

txtHarga.setText("550000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 3")) && (rdioEksklusif.isSelected()))

{

txtHarga.setText("560000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 1")) && (rdioBisnis.isSelected()))

{

txtHarga.setText("700000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 2")) && (rdioBisnis.isSelected()))

{

txtHarga.setText("750000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 3")) && (rdioBisnis.isSelected()))

{

txtHarga.setText("760000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 1")) && (rdioBisnis.isSelected()))

{

txtHarga.setText("700000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 2")) && (rdioBisnis.isSelected()))

{

txtHarga.setText("750000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 3")) && (rdioBisnis.isSelected()))

{

txtHarga.setText("760000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 1")) && (rdioEkonomis.isSelected()))

{

txtHarga.setText("400000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 2")) && (rdioEkonomis.isSelected()))

{

txtHarga.setText("450000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama<=7)&& (CombLantai.getSelectedItem().equals("Lantai 3")) && (rdioEkonomis.isSelected()))

{

txtHarga.setText("460000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 1")) && (rdioEkonomis.isSelected()))

{

txtHarga.setText("400000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 2")) && (rdioEkonomis.isSelected()))

{

txtHarga.setText("450000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else if ((selama>7)&& (CombLantai.getSelectedItem().equals("Lantai 3")) && (rdioEkonomis.isSelected()))

{

txtHarga.setText("460000");

int harga = Integer.parseInt(txtHarga.getText());

totalharga = harga * selama;

int potongan1 = totalharga * 15 / 100;

int potongan2 = totalharga * 0;

diskon = potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga - diskon + + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

JOptionPane.showMessageDialog(null,"Anda belum memilih kelas...!");

}

}

Untuk Event----“Penari Strip”-----

private void chckPenariActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

if (chckPenari.isSelected())

{

penari = 300000;

txtPenari.setText(String.valueOf(penari));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

penari = 0;

txtPenari.setText(String.valueOf(penari));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

Untuk Event----“Penari Pijat Alami”-----

private void chckPijatActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

if (chckPijat.isSelected())

{

mijit = 500000;

txtPijat.setText(String.valueOf(mijit));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

mijit = 0;

txtPijat.setText(String.valueOf(mijit));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

Untuk Event----“Karoke”-----

private void chckKarokeActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

if (chckKaroke.isSelected())

{

karoke = 100000;

txtKaroke.setText(String.valueOf(karoke));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

karoke = 0;

txtKaroke.setText(String.valueOf(karoke));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

Untuk Event----“Hiburan Spesial”-----

private void ChckHiburanActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

if (ChckHiburan.isSelected())

{

hiburan = 1000000;

txtHiburan.setText(String.valueOf(hiburan));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

hiburan = 0;

txtHiburan.setText(String.valueOf(hiburan));

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

int totaldiskon = Integer.parseInt(txtDiskon.getText());

total = (harga*selama)-totaldiskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

Sebelum mengcompile program tersebut, isikan Source Code dibawah ini pada Main.java fungsinya untuk memanggil Restoran.java

* and open the template in the editor.

*/

package hoteljulius;

/**

*

* @author RUSIA

*/

public class Main {

/**

* @param args the command line arguments

*/

public static void main(String[] args) {

// TODO code application logic here

new HotelCaesar().setVisible(true);

}

}



Tambahan :

Jika anda ingin menjadikan JComboBox1(Pilihan Lantai) sebagai Event Prosesnya maka anda harus menghapus semua Souce Code yang ada pada Event---“txtSelama--- dan membuat Event pada JComboBox1,,Posisinya juga diganti pilihan “LANTAI dibawahnya Selama “txtSelama”

Untuk Source Codenya nanti yaitu sebagai berikut :

Event---“Pilihan Lantai”

private void CombLantaiActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

if ((CombLantai.getSelectedItem().equals("Lantai 1"))&& (rdioEksklusif.isSelected()))

{

txtHarga.setText("500000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 2"))&& (rdioEksklusif.isSelected()))

{

txtHarga.setText("550000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 3"))&& (rdioEksklusif.isSelected()))

{

txtHarga.setText("560000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 1"))&& (rdioBisnis.isSelected()))

{

txtHarga.setText("700000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 2"))&& (rdioBisnis.isSelected()))

{

txtHarga.setText("750000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 3"))&& (rdioBisnis.isSelected()))

{

txtHarga.setText("760000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 1"))&& (rdioEkonomis.isSelected()))

{

txtHarga.setText("400000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 2"))&& (rdioEkonomis.isSelected()))

{

txtHarga.setText("450000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if ((CombLantai.getSelectedItem().equals("Lantai 3"))&& (rdioEkonomis.isSelected()))

{

txtHarga.setText("460000");

int harga = Integer.parseInt(txtHarga.getText());

int selama = Integer.parseInt(txtSelama.getText());

totalharga = harga*selama;

int potongan1 = totalharga*15/100;

int potongan2 = totalharga*0;

if (selama <= 7)

{

diskon=potongan2;

txtDiskon.setText(Integer.toString(potongan2));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

else

{

diskon=potongan1;

txtDiskon.setText(Integer.toString(potongan1));

total = totalharga-diskon + penari + mijit + karoke + hiburan;

txtTotal.setText(String.valueOf(total));

}

}

else if (CombLantai.getSelectedItem().equals("---Pilih---"))

{

JOptionPane.showMessageDialog(null,"Anda belum memilih lantainya...!");

}

}

Selamat mencoba :


Semoga bermanfa’at …………

Salam Sukses buat pencinta NETBEANS IDE

CopyRight 10-10-2010 Yulius Asan


0 komentar: