Berikut saya share ilmu Pemrograman Berorientasi Objek, menghitung nilai genap menggunakan GUI. Di sini saya menggunakan commponent SWING. Berikut skrin cenut nya :D
source code :
import javax.swing.*;
public class genap {
public static void main (String[] args) {
String input = JOptionPane.showInputDialog("Input = ");
int x = Integer.parseInt(input);
for (int i=2; i<=x; i++) {
if(i % 2 !=0 ) {
System.out.print("ganjil " + i);
}
else System.out.print(i);
i++;
}
System.out.print(" ");
}
}
0 comments:
Posting Komentar