disini saya akan share ilmu saya tentang Cara Membuat Codingan Bilangan Desimal To Biner pada java.
di sini contoh codingannya dan screenshoutnya:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package main;
import javax.swing.JOptionPane;
/**
*
* @author Toshiba
*/
public class biner {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String input = JOptionPane.showInputDialog("Masssukan Bilangan Desimal");
int i = Integer.parseInt(input);
String biner = Integer.toBinaryString(i);
JOptionPane.showMessageDialog(null,"Binary : 0" + biner);
System.out.println("Binary : 0" + biner);
System.exit(0);
}
}
Inputan
di sini contoh codingannya dan screenshoutnya:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package main;
import javax.swing.JOptionPane;
/**
*
* @author Toshiba
*/
public class biner {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String input = JOptionPane.showInputDialog("Masssukan Bilangan Desimal");
int i = Integer.parseInt(input);
String biner = Integer.toBinaryString(i);
JOptionPane.showMessageDialog(null,"Binary : 0" + biner);
System.out.println("Binary : 0" + biner);
System.exit(0);
}
}
Inputan
Outputan
kalau kurang jelas tentang codingan diatas, silahkan download saja projectnya disini
dan silahkan comen kalau tidak jelas :D
semoga bermanfaat gan ^_^
dan silahkan comen kalau tidak jelas :D
semoga bermanfaat gan ^_^