Ejemplo 1: CONVERSIÓN DECIMAL A BINARIA javascript
// program to convert decimal to binary
function convertToBinary(x) {
let bin = 0;
let rem, i = 1, step = 1;
while (x != 0) {
rem = x % 2;
console.log(
`Step ${step++}: ${x}/2, Remainder = ${rem}, Quotient = ${parseInt(x/2)}`
);
x = parseInt(x / 2);
bin = bin + rem * i;
i = i * 10;
}
console.log(`Binary: ${bin}`);
}
// take input
let number = prompt('Enter a decimal number: ');
convertToBinary(number);
Ejemplo 2: como convertir a binario en javascript
function bin(num) {
var binn = [];
var c;
while (num != 1) {
c = Math.floor(num / 2);
binn.unshift(num % 2);
num = c;
}
binn.unshift(1)
return binn
}
//returns list of binary nos. in order
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)