You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int x = 13;
|
|
int ans = 0;
|
|
for (int i = 30; i >= 0; i--) {
|
|
int u = x >> i & 1; //取出x的当前二进制位
|
|
ans = ans * 2 + u; //还原二进制数字为十进制
|
|
}
|
|
printf("%d", ans);
|
|
return 0;
|
|
} |