很简单的思路 有需要可以看看 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList;import java.util.Collections;import java.util.Scanner;publ…… 题解列表 2022年02月23日 0 点赞 0 评论 136 浏览 评分:0.0
题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin >>n; if(n>54…… 题解列表 2022年02月23日 0 点赞 0 评论 185 浏览 评分:0.0
蓝桥杯历届试题-回文数字 Python!! 摘要:解题思路:利用循环嵌套实现对10000~999999的遍历而各位数之和,我们可以先将其转换为字符串然后遍历字符串,遍历过程中将元素转换回整形,并将其相加与记录最后用字符串的正逆序输出判断是否对称完成注…… 题解列表 2022年02月25日 0 点赞 0 评论 98 浏览 评分:0.0
hhhhhhhhhhhhhhhh谢谢你 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool flag = 0; int n; cin >> n; int…… 题解列表 2022年02月28日 0 点赞 0 评论 141 浏览 评分:9.9
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码: #include"bits/stdc++.h" using namespace std; int main(){ int n; int flag=0; …… 题解列表 2022年02月28日 0 点赞 0 评论 81 浏览 评分:0.0
蓝桥杯历届试题-回文数字(JAVA)参考前面大佬的 摘要:解题思路:注意事项:无参考代码:import java.util.*; public class Main { public static void main(String[] arg…… 题解列表 2022年03月02日 0 点赞 0 评论 210 浏览 评分:9.9
蓝桥杯历届试题-回文数字(JAVA)也可以暴力枚举 摘要:解题思路:注意事项:无参考代码:import java.util.*; public class Main { public static void main(String[] arg…… 题解列表 2022年03月02日 0 点赞 0 评论 345 浏览 评分:9.9
c++ 基础题 1434:回文数字 摘要:思路: 题目已经给定了数字范围, 即是在这个范围进行循环遍历 然后利用一函数来判断这个数是否为回文 是否各位置上的数字之和为一开始输入的值。符合这两种要求的即为所求。 ```c++ #incl…… 题解列表 2022年03月06日 0 点赞 0 评论 348 浏览 评分:8.7
简单优雅,代码超短 摘要:`` n = int(input()) u = 0 #记录是否有输出数字 for i in range(10000,1000000):…… 题解列表 2022年03月10日 0 点赞 2 评论 351 浏览 评分:9.1
蓝桥杯历届试题-回文数字 摘要:参考代码:#include<iostream> #include<algorithm> using namespace std; bool isReverse(int n) { …… 题解列表 2022年03月11日 0 点赞 0 评论 119 浏览 评分:9.9