蓝桥杯历届试题-回文数字-纯暴力(Java) 摘要:# 解题思路: 对每一个数的每个位的总值是否与输入的值相同 并且对两个sb对象进行判断,完全相同就是回文数字 ## 注意事项: i的值不能直接参加运算,否则会影响后续的循环 …… 题解列表 2024年01月07日 0 点赞 0 评论 52 浏览 评分:0.0
字符串处理回文数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int main(){ int n; int sum=0,…… 题解列表 2023年11月25日 0 点赞 0 评论 103 浏览 评分:9.9
c代码记录之回文数字 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int fun5(int m){ int i,j,k,t=0; for(i=1;i<=9;i++) …… 题解列表 2023年11月22日 0 点赞 0 评论 59 浏览 评分:0.0
[蓝桥杯历届试题-回文数字] 暴力枚举+字符串转换 摘要:解题思路: 枚举10000~999999中的回文数和满足和为n的数字,为了方便可以分别枚举10000~99999和100000~999999。参考代码:# include <bits/stdc++.h…… 题解列表 2023年11月14日 0 点赞 0 评论 82 浏览 评分:9.9
暴力,朴实无华 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n;bool o;int y = 0;bool sf(int x, int w){ i…… 题解列表 2023年11月11日 0 点赞 0 评论 135 浏览 评分:9.9
暴力出奇迹 摘要:参考代码:#include<bits/stdc++.h> using namespace std; bool reversenum(int n) { string s = to_st…… 题解列表 2023年09月02日 0 点赞 0 评论 73 浏览 评分:9.9
题目 1434: 蓝桥杯历届试题-回文数字题解 摘要:1.解题思路先把每个从10000~999999的数都查一遍,输出和为n且是回文数的。确定回文数的方法:有一个数,例如t=i=1331,把末位放到num的末尾,当t小于1时停止。(1331,0)->(1…… 题解列表 2023年07月02日 0 点赞 0 评论 71 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:n=int(input())flag=0for i in range(10000,1000000): a=str(i) l=list(map(int,a)) …… 题解列表 2023年04月06日 0 点赞 0 评论 61 浏览 评分:6.0
蓝桥杯回文数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int f(int n){ int sum=0; while(n>0){ sum+…… 题解列表 2023年04月04日 0 点赞 0 评论 84 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool huiwen(int x,int g){ int y=0,sum=0; int t=…… 题解列表 2023年03月29日 0 点赞 0 评论 53 浏览 评分:0.0