题解 1189: 内码对称

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

筛选

内码对称12222222222222222

摘要:解题思路:先将整数变为32位的01 然后判断回文注意事项:参考代码:#include "stdio.h"#include "string.h"int main() { long long  int n……

1189: 内码对称

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

内码对称问题

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

内码对称求解

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