题解 1434: 蓝桥杯历届试题-回文数字

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

筛选

回文数字暴力解答

摘要:参考代码:```#include<iostream>#include<algorithm>using namespace std;bool ok;int main(){ int n; cin>>n; ……

C语言简单代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){ int m,h=0; m=x; while(m>0) { h=h*10+m%10; m=m/10; ……

回文数字(c++代码实现,vector)

摘要:解题思路:注意事项:此题比较容易超时, 需要减少遍历次数参考代码:#include using namespace std; vector bool check(int n, int num) ……