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

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

筛选

桥杯历届试题-回文数字

摘要:解题思路:暴力循环输出注意事项:参考代码:#include<stdio.h>int main(){ int m; scanf("%d",&m); int i,flag = 0; for(i = 10……

蓝桥杯历届试题-回文数字 python

摘要:解题思路:遍历,数字->字符串->列表,再与反转后判断注意事项:要注意不能直接用=,会修改原始列表数据!参考代码:num = int(input()) cnt = 0 for i in range……

蓝桥杯历届试题-回文数字(C语言)

摘要:解题思路:两个函数:1.求各位数之和;2.判断是否为回文数字。注意事项:可用sprintf()把数字转化为字符串方便操作。参考代码:// [蓝桥杯][历届试题]回文数字#include <stdio.……

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

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

纯粹的暴力求解

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int fun(int i) {     int n1, n2, n3, n4, n5, n6;     if (i / 1……

利用Python特性降低循环次数

摘要:解题思路:    利用切片反向以及内置的sum,减少位数一半的循环注意事项:    可以只循环一半的位数参考代码:count=0 goal=int(input()) flag=True for ……