蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:n=int(input())flag=0for i in range(10000,1000000): a=str(i) l=list(map(int,a)) …… 题解列表 2023年04月06日 0 点赞 0 评论 364 浏览 评分: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 评论 350 浏览 评分: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 评论 300 浏览 评分:0.0
五位、六位回文数 摘要:n=int(input()) s=[] for i in range(1,10): for j in range(0,10): for k in range(0,10)…… 题解列表 2023年03月24日 1 点赞 0 评论 286 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int isHui(int n) { int m=0,tmp=n; wh…… 题解列表 2023年03月20日 0 点赞 0 评论 272 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要: #include #include #include #include #include #include #include …… 题解列表 2023年03月15日 0 点赞 0 评论 443 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:不知道为什么答案错误67,有大佬能解答一下吗参考代码:n=int(input())l=[0 for _ in range(100)]tmp=1for i in range(1,10…… 题解列表 2023年01月16日 0 点赞 0 评论 363 浏览 评分:0.0
暴力暴力还是暴力 摘要:解题思路:先写出判断是否为回文数的独立方法,然后再暴力求和。。判断回文数的方法时本来中途想到可以用双指针,但是想想还是继续暴力了。。参考代码:import java.util.Scanner; …… 题解列表 2023年01月10日 0 点赞 0 评论 407 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t,i,flag=1; scanf("%d",&n); for(i=10000;i<1000000;…… 题解列表 2023年01月04日 0 点赞 0 评论 598 浏览 评分:9.9
简单易懂的回文数字题解(C++) 摘要:解题思路: 题前小叙:同样的,我被一处小失误,改了半个多小时的代码,就在回文数字判断那边失误的,竟然直接在参数上进行操作!!!切记需要和参数进行判断时,不能在参数上进行其…… 题解列表 2022年11月18日 0 点赞 1 评论 550 浏览 评分:9.9