题解 1189: 内码对称

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

筛选

内码对称 (C++代码)

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

内码对称问题

摘要:解题思路:注意事项:参考代码:sum1 = 0try:    while True:        x=int(input())        y=format(x,&#39;b&#39;)     ……

内码对称求解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){long long int n; ……