MENCARI VOLUME KUBUS
Nama : Sabila mula prawiro
Nim : 161011700396
Ruang : 604
1. Kasus,
Kampung pulau ingin perbaikin jalan dengan mempunyai panjang 100M, lebar 20M dan tinggi 2M
hitung volume perbaikan jalan.
2.Scren
STEP 1
Membuat Disain Pola Gambar.
STEP 2
Scren Code Dibagian Hitung.
STEP 3.
RUN
STEP 4.
Coba Hitung Kasus. Dan Hasilnya
Source code.
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
int p= Integer.parseInt(TxtPanjang.getText());
int l= Integer.parseInt(TxtLebar.getText());
int t= Integer.parseInt(TxtTinggi.getText());
double volume = p*l*t;
TxtVolume.setText(Double.toString(volume));
double LPBalok = 2*((p*l)+(1*t)+(p*t));
TxtLBalok.setText(Double.toString(LPBalok));
}
// TODO add your handling code here:
int p= Integer.parseInt(TxtPanjang.getText());
int l= Integer.parseInt(TxtLebar.getText());
int t= Integer.parseInt(TxtTinggi.getText());
double volume = p*l*t;
TxtVolume.setText(Double.toString(volume));
double LPBalok = 2*((p*l)+(1*t)+(p*t));
TxtLBalok.setText(Double.toString(LPBalok));
}
SEKIAN ,TERIMAKSIH..