蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码: #include"bits/stdc++.h"using namespace std;int&…… 题解列表 2022年02月28日 0 点赞 0 评论 72 浏览 评分:0.0
hhhhhhhhhhhhhhhh谢谢你 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){boolflag=0;intn;cin>>n;inta…… 题解列表 2022年02月28日 0 点赞 0 评论 131 浏览 评分:9.9
蓝桥杯历届试题-回文数字 Python!! 摘要:解题思路:利用循环嵌套实现对10000~999999的遍历而各位数之和,我们可以先将其转换为字符串然后遍历字符串,遍历过程中将元素转换回整形,并将其相加与记录最后用字符串的正逆序输出判断是否对称完成注…… 题解列表 2022年02月25日 0 点赞 0 评论 89 浏览 评分:0.0
题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ intn;&…… 题解列表 2022年02月23日 0 点赞 0 评论 173 浏览 评分:0.0
很简单的思路 有需要可以看看 摘要:解题思路:注意事项:参考代码:importjava.util.ArrayList;importjava.util.Collections;importjava.util.Scanner;publicc…… 题解列表 2022年02月23日 0 点赞 0 评论 126 浏览 评分:0.0
暴力求解,加标志位 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(void){ intn;intf=1; &n…… 题解列表 2022年02月23日 0 点赞 0 评论 98 浏览 评分:9.9
蓝桥杯历届试题-回文数字 摘要:解题思路:代码思路有点乱注意事项:参考代码:#include<stdio.h>intmain(){intn,sum,a;inti,j,k,count=0;scanf("%d&qu…… 题解列表 2022年02月12日 0 点赞 0 评论 68 浏览 评分:0.0
两组判断解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intjudge1(intn){inta[6],len,i=0,j=0;if(n<100000)len=5;elsel…… 题解列表 2022年02月08日 0 点赞 0 评论 75 浏览 评分:0.0
蓝桥杯历届试题-回文数字(C语言版)超级简单循环搞定 摘要:##简单做法见代码```c#includeintmain(){intn;intcount=0;scanf("%d",&n);for(inti=1;i…… 题解列表 2022年02月06日 0 点赞 0 评论 161 浏览 评分:9.9
递归翻转字符串 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {publi…… 题解列表 2022年02月04日 0 点赞 0 评论 106 浏览 评分:0.0