Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package tp2;
- import java.util.Scanner;
- import java.util.Stack;
- public class eje4 {
- public static int conversorOctal(int numero,Stack<Integer> pila) {
- int cociente,resto,suma=0;
- do {
- cociente=numero/8;
- resto=numero%8;
- pila.push(resto);
- numero=cociente;
- }while(numero>=8);
- pila.push(cociente);
- for(int i=(pila.size()-1);i>=0;i--) {
- suma+=pila.pop()*Math.pow(10, i);
- }
- return suma;
- }
- public static int conversorBinario(int numero,Stack<Integer> pila) {
- int cociente,resto,suma=0;
- do {
- cociente=numero/2;
- resto=numero%2;
- pila.push(resto);
- numero=cociente;
- }while(numero>=2);
- pila.push(cociente);
- for(int i=(pila.size()-1);i>=0;i--) {
- suma+=pila.pop()*Math.pow(10, i);
- }
- return suma;
- }
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner lectura= new Scanner(System.in);
- Stack<Integer> conversorADecimal = new Stack<Integer>();
- System.out.println("----CONVERSEOR DE NUMEROS---");
- System.out.println("Ingrese un numero en base DECIMAL:");
- int numero=lectura.nextInt();
- System.out.println("Ingrese la base destino de la conversion (1:Base Octal,2: Base Binaria): ");
- int resp=lectura.nextInt();
- if(resp==1) {
- System.out.println("Conversion a octal: "+conversorOctal(numero,conversorADecimal));
- }else if(resp==2){
- System.out.println("Conversion a binario: "+conversorBinario(numero,conversorADecimal));
- }else {
- System.out.println("Opcion invalida!!!!");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement