1434: 蓝桥杯历届试题-回文数字(c++) 摘要:解题思路:本题要求找到一些5位或6位的回文数字,而这些回文数字都可以由3位数组合形成,这样就可以枚举100到999之间的数,而不是10001到999999。 参考代码: ```cpp #incl…… 题解列表 2022年11月16日 0 点赞 0 评论 130 浏览 评分:9.9
C++超简单思路 摘要:解题思路:将数字问题转换成字符串问题注意事项:注意看题目要求参考代码:#include<iostream>#include<string>#include<algorithm>#include<std…… 题解列表 2024年01月19日 0 点赞 0 评论 89 浏览 评分:9.9
题目 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[7]; int n,n1; int main(){ …… 题解列表 2021年04月11日 0 点赞 0 评论 193 浏览 评分: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
[蓝桥杯历届试题-回文数字] 暴力枚举+字符串转换 摘要:解题思路: 枚举10000~999999中的回文数和满足和为n的数字,为了方便可以分别枚举10000~99999和100000~999999。参考代码:# include <bits/stdc++.h…… 题解列表 2023年11月14日 0 点赞 0 评论 82 浏览 评分:9.9
直观的解决方法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a; int k=0; cin>>a; for(in…… 题解列表 2022年10月16日 0 点赞 0 评论 151 浏览 评分:9.9
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int n; bool f(int x){ int a[6],i=0,nu…… 题解列表 2021年11月18日 0 点赞 0 评论 339 浏览 评分:9.9
超详细通俗易懂C++,暴力求解 摘要:解题思路:1.分别求满足条件的五位数和六位数,利用三层循环实现。 2.最外层从1开始,因为数字第一位不能为0,i,j,p从小到大循环保证最后输出顺序是从小到大的,不需要再次…… 题解列表 2022年11月14日 0 点赞 0 评论 159 浏览 评分:9.9
回文数字(枚举,数的分解) 摘要:##### 枚举: 枚举10001到9999和100001到999999的所有数,分解出各个位的数以此判断是否为回文数并且判断各个位的数字之和是否为n。 ```cpp #include usi…… 题解列表 2022年04月03日 0 点赞 0 评论 253 浏览 评分:9.9
蓝桥杯历届试题-回文数字 摘要:参考代码:#include<iostream> #include<algorithm> using namespace std; bool isReverse(int n) { …… 题解列表 2022年03月11日 0 点赞 0 评论 118 浏览 评分:9.9