Contoh perhitungan bilangan faktorial 4! = 4.3.2.1 = 24
Berikut adalah contoh program mencari bilangan faktorial dengan menggunakan java. Saya menggunakan jFrame form untuk membuat aplikasi.
int n = Integer.parseInt(jTextField1.getText());
double has = 1;
for (int i = n; i > 0; i--) {
if (i == 1) {
jTextArea1.setText(jTextArea1.getText() + i);
} else {
jTextArea1.setText(jTextArea1.getText() + i + " x ");
}
has = has * i;
}
jTextArea1.setText(jTextArea1.getText() + "\n\n" + has);
double has = 1;
for (int i = n; i > 0; i--) {
if (i == 1) {
jTextArea1.setText(jTextArea1.getText() + i);
} else {
jTextArea1.setText(jTextArea1.getText() + i + " x ");
}
has = has * i;
}
jTextArea1.setText(jTextArea1.getText() + "\n\n" + has);
Berikut adalah tampilan dari aplikasi mencari bilangan faktorial
Kalau mau beserta contoh programnya saya sudah menyiapkan link downliad dibawah postingan, silahkan klik Download Program.
Download Program
No comments:
Post a Comment