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
|
#include <iostream>
#include <cstring>
#include <bitset>
//十六进制转二进制
using namespace std;
int main()
{
int n,i=0,s[10000];
scanf("%x",&n);
while(n!=0)
{
s[i]=n%2;
//printf("%d\n",s[i]);
n/=2;
i++;
}
for(int j=i-1;j>=0;j--)
{
printf("%d",s[j]);
}
if(i==0)
{
printf("0");
}
}
|