C++暴力破解,无废话 摘要:解题思路:按照要求编写即可注意事项:字符串与数字的转化参考代码:#include<bits/stdc++.h>using namespace std;bool fun(int n,int m){ st…… 题解列表 2022年04月06日 0 点赞 0 评论 660 浏览 评分:5.7
回文数字(小暴力) 摘要:解题思路:枚举组成5,6位的那些数字,再组成,用set存储(自动排序),因为有相同再次插入也没事;注意事项:判断有0在组合中的情况参考代码:#include<iostream>#include<alg…… 题解列表 2022年04月05日 0 点赞 0 评论 433 浏览 评分:8.7
回文数字(枚举,数的分解) 摘要:##### 枚举: 枚举10001到9999和100001到999999的所有数,分解出各个位的数以此判断是否为回文数并且判断各个位的数字之和是否为n。 ```cpp #include usi…… 题解列表 2022年04月03日 0 点赞 0 评论 253 浏览 评分:9.9
c++,暴力做法 摘要:解题思路:注意事项:中间一位时只能是奇数,偶数的话中间就能有两位参考代码:#include<iostream>#include<vector>#include<algorithm>using name…… 题解列表 2022年03月19日 0 点赞 0 评论 152 浏览 评分:0.0
蓝桥杯历届试题-回文数字 C++模拟 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int n; int count_=0; string s; …… 题解列表 2022年03月16日 0 点赞 0 评论 400 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:参考代码:#include<iostream> #include<algorithm> using namespace std; bool isReverse(int n) { …… 题解列表 2022年03月11日 0 点赞 0 评论 118 浏览 评分:9.9
c++ 基础题 1434:回文数字 摘要:思路: 题目已经给定了数字范围, 即是在这个范围进行循环遍历 然后利用一函数来判断这个数是否为回文 是否各位置上的数字之和为一开始输入的值。符合这两种要求的即为所求。 ```c++ #incl…… 题解列表 2022年03月06日 0 点赞 0 评论 347 浏览 评分:8.7
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码: #include"bits/stdc++.h" using namespace std; int main(){ int n; int flag=0; …… 题解列表 2022年02月28日 0 点赞 0 评论 80 浏览 评分:0.0
hhhhhhhhhhhhhhhh谢谢你 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool flag = 0; int n; cin >> n; int…… 题解列表 2022年02月28日 0 点赞 0 评论 140 浏览 评分:9.9
题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin >>n; if(n>54…… 题解列表 2022年02月23日 0 点赞 0 评论 185 浏览 评分:0.0