题解 1189: 内码对称

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1189: 内码对称

摘要:```cpp #include using namespace std; typedef long long LL; int main() { LL num; int a……

内码对称 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[32]; int main() ……

内码对称 (C++代码)

摘要:解题思路:        把10进制变成32位二进制存储,判断对称即可。核心代码:    arr[i] = (num >> i) & 1参考代码:#include<bits/stdc++.h> us……