Lo escribi en Java pero el problema es que aun no se como se hace un interfaz grafica. No se si me pueden dar una mano de como debo hacerlo.
Aqui les dejo el codigo:
Código:
Saludos package DecimalBinario; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * * @author Tito Millo */ public class Principal { public static void main(String[] args) throws IOException { int num, coc = 0, res, i = 0; int[] vect = new int[50]; BufferedReader lector = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Ingrese un número: "); num = Integer.parseInt(lector.readLine()); if (num < 2){ System.out.println(num); }else{ while (num >= 2){ coc = num / 2; res = num % 2; num = coc; vect[i] = res; i++; } System.out.print(coc); i--; } while (i >= 0){ System.out.print(vect[i]); i--; } System.out.println(""); } }