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
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int isHui(int n) { int m=0,tmp=n; wh…… 题解列表 2023年03月20日 0 点赞 0 评论 58 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要: #include #include #include #include #include #include #include …… 题解列表 2023年03月15日 0 点赞 0 评论 144 浏览 评分:0.0
简单易懂的回文数字题解(C++) 摘要:解题思路: 题前小叙:同样的,我被一处小失误,改了半个多小时的代码,就在回文数字判断那边失误的,竟然直接在参数上进行操作!!!切记需要和参数进行判断时,不能在参数上进行其…… 题解列表 2022年11月18日 0 点赞 1 评论 148 浏览 评分:9.9
1434: 蓝桥杯历届试题-回文数字(c++) 摘要:解题思路:本题要求找到一些5位或6位的回文数字,而这些回文数字都可以由3位数组合形成,这样就可以枚举100到999之间的数,而不是10001到999999。 参考代码: ```cpp #incl…… 题解列表 2022年11月16日 0 点赞 0 评论 130 浏览 评分:9.9
超详细通俗易懂C++,暴力求解 摘要:解题思路:1.分别求满足条件的五位数和六位数,利用三层循环实现。 2.最外层从1开始,因为数字第一位不能为0,i,j,p从小到大循环保证最后输出顺序是从小到大的,不需要再次…… 题解列表 2022年11月14日 0 点赞 0 评论 159 浏览 评分:9.9
回文数字暴力解答 摘要:参考代码:```#include<iostream>#include<algorithm>using namespace std;bool ok;int main(){ int n; cin>>n; …… 题解列表 2022年10月17日 0 点赞 0 评论 84 浏览 评分:0.0
直观的解决方法 摘要:解题思路:注意事项:参考代码:#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
沸羊羊 C# 1434: 蓝桥杯历届试题-回文数字 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; int q=1; for(i…… 题解列表 2022年08月10日 0 点赞 0 评论 134 浏览 评分:0.0
编写题解 1434: 蓝桥杯历届试题-回文数字(简单) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int n;bool hui(int a){ int i=a; in…… 题解列表 2022年07月19日 0 点赞 0 评论 102 浏览 评分:0.0