题解列表

筛选

P1019 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; const……

倒数第二 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[100]={0}; int m……

内码对称 (C++代码)

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

转换的问题来了 (C++代码)

摘要:解题思路:        之前的OJ有问题,交的我头有点大。······参考代码:#include<bits/stdc++.h> using namespace std; typedef long……