题解 1189: 内码对称

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

筛选

内码对称 (C语言代码)

摘要:解题思路:把一个十进制数转换为一个32位二进制数保存到字符数组中,然后判断是否对称即可,用一个变量统计对称个数。注意事项:参考代码:#include<stdio.h> #include <strin……

内码对称 (C++代码)

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

内码对称 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>  #include <stdlib.h>  #include <math.h>  #include <string.h>  int ……

1189: 内码对称

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

内码对称-题解(C语言代码)

摘要:#### 解题思路: 注意正反判断是否为回文 #### 参考代码: ```c #include int judge(long long x); int main() { lo……

内码对称-题解(C语言代码)值得参考

摘要:题干: C++中int型整数内码是一个32位的01序列,该01序列有些是对称的,有些是不对称的。对于给定的一个整数,在一些场合,需要判断其整数内码的对称性。这个事情要做好还非你不行呢。 输入 ……