-
Notifications
You must be signed in to change notification settings - Fork 0
/
2bin2dec.cpp
50 lines (46 loc) · 875 Bytes
/
2bin2dec.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//Pasar un numero decimal a binario.
//La representación binaria es de al menos 1 byte.
#include <iostream>
#include <algorithm>
#include <vector>
#define f(i,x,y) for (int i = x; i < y; i++)
#define vint vector<int>
#define pb push_back
using namespace std;
vint num2bin(int x){
vint num;
while(x){
num.pb(x&1);
x>>=1;
}
// 11 : 1011 ; ( ultima cifra de x ) & 1
// 5 : 0101 ; x>>=m, mueve m posiciones a la derecha
// 2 : 0010
// 1 : 0001
// => 1101
while(num.size()<8)
num.pb(0);
// 1101 0000
reverse(num.begin(),num.end());
// 0000 1011
return num;
}
int bin2num(vint num)
{
int n=0;
f(i,0,num.size())
{
n+=(num[num.size()-i-1]<<i);
}
return n;
}
int main(){
int N;
cout<<"Ingresar el numero: ";
cin>>N;
vint num = num2bin(N);
f(i,0,num.size())
cout<<num.at(i);
cout<<endl<<(bin2num(num));
return 0;
}