简单逻辑,拒绝复杂 摘要:解题思路:注意事项:参考代码:import datetimen=int(input())count=0for j in range(10000,1000000): sum = 0 j=st…… 题解列表 2022年01月11日 0 点赞 0 评论 754 浏览 评分:9.9
蓝桥杯历届试题-回文数字 importjava.util.Scanner;publicclassDemo1434{publicstaticvoidmain(String[]args){Scannerscanner=newScanner(System.in);while(scanner.hasNext()){intn=scann 题解列表 2022年01月12日 0 点赞 0 评论 637 浏览 评分:9.9
优质题解 1434:回文数字(统合前辈们的主要做法为两种解法) 摘要:首先是借鉴了前辈的网址奉上:蓝桥杯历届试题-回文数字 (C语言代码)最简洁的解法(对应解法一) & 题解列表 2022年01月16日 0 点赞 2 评论 2077 浏览 评分:8.7
蓝桥杯历届试题-回文数字 (暴力查找)C++代码。 摘要:解题思路: 在main()函数里输入N,和循环查找,在AA()函数中判断是否为回文数字,在BB()函数中判断,某个数字的所有位的和,是否等于输入的数字N;设置一个计数变量看是否没有满足条件的,输出:…… 题解列表 2022年01月24日 0 点赞 0 评论 648 浏览 评分:6.7
1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:n=int(input()) def get(x): if str(x) == str(x)[::-1]: return 1 def g(…… 题解列表 2022年01月31日 0 点赞 0 评论 358 浏览 评分:0.0
递归翻转字符串 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2022年02月04日 0 点赞 0 评论 658 浏览 评分:0.0
蓝桥杯历届试题-回文数字(C语言版)超级简单循环搞定 摘要:## 简单做法见代码 ```c #include int main() { int n; int count = 0; scanf("%d", &n); …… 题解列表 2022年02月06日 0 点赞 0 评论 566 浏览 评分:9.9
两组判断解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int judge1(int n){ int a[6],len,i=0,j=0; if(n<100000) len=5; else le…… 题解列表 2022年02月08日 0 点赞 0 评论 452 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:解题思路:代码思路有点乱注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,a; int i,j,k,count=0; scanf("%d",&n); f…… 题解列表 2022年02月12日 0 点赞 0 评论 496 浏览 评分:0.0
暴力求解,加标志位 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int n;int f=1; int sum=0,num=0; scanf("%d",&n…… 题解列表 2022年02月23日 0 点赞 0 评论 529 浏览 评分:9.9