蓝桥杯历届试题-回文数字-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2021年02月20日 0 点赞 0 评论 186 浏览 评分:9.9
蓝桥杯历届试题-回文数字-题解(C语言代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2021年02月22日 0 点赞 0 评论 148 浏览 评分:0.0
回文数字,用好函数,一个函数里可以有两个判断语句 摘要:解题思路:用好函数,一个函数里可以有两个判断语句 注意事项:参考代码:#include<stdio.h>#include<math.h>bool rever(int a,int length,int …… 题解列表 2021年03月19日 0 点赞 1 评论 95 浏览 评分:2.0
python解决回文数字 摘要:解题思路:思路清晰简单参考代码:# 求数字各位数之和 def DigitCount(n): result = 0 s = str(n) lenth = len(s) …… 题解列表 2021年03月20日 0 点赞 0 评论 148 浏览 评分:0.0
C语言简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){ int m,h=0; m=x; while(m>0) { h=h*10+m%10; m=m/10; …… 题解列表 2021年03月23日 0 点赞 0 评论 148 浏览 评分:0.0
利用Python特性降低循环次数 摘要:解题思路: 利用切片反向以及内置的sum,减少位数一半的循环注意事项: 可以只循环一半的位数参考代码:count=0 goal=int(input()) flag=True for …… 题解列表 2021年03月26日 0 点赞 0 评论 387 浏览 评分:8.0
纯粹的暴力求解 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int fun(int i) { int n1, n2, n3, n4, n5, n6; if (i / 1…… 题解列表 2021年04月04日 0 点赞 0 评论 126 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码)非常好理解的一个思路!应该没人看不懂吧...... 摘要:解题思路:将回文数字的各个位都提出来,乘以每个位相应的倍数,如十万位 1(十万位)*100000 然后相加,然后从个位开始反着再来一次,判断两者的和是否相等,就是回文数字,并用计数器num记录,…… 题解列表 2021年04月09日 0 点赞 0 评论 218 浏览 评分: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
回文数字(c++代码实现,vector) 摘要:解题思路:注意事项:此题比较容易超时, 需要减少遍历次数参考代码:#include using namespace std; vector bool check(int n, int num) …… 题解列表 2021年04月14日 0 点赞 0 评论 207 浏览 评分:0.0