蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码: #include"bits/stdc++.h" using namespace std; int main(){ int n; int flag=0; …… 题解列表 2022年02月28日 0 点赞 0 评论 80 浏览 评分:0.0
hhhhhhhhhhhhhhhh谢谢你 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool flag = 0; int n; cin >> n; int…… 题解列表 2022年02月28日 0 点赞 0 评论 140 浏览 评分:9.9
蓝桥杯历届试题-回文数字 Python!! 摘要:解题思路:利用循环嵌套实现对10000~999999的遍历而各位数之和,我们可以先将其转换为字符串然后遍历字符串,遍历过程中将元素转换回整形,并将其相加与记录最后用字符串的正逆序输出判断是否对称完成注…… 题解列表 2022年02月25日 0 点赞 0 评论 97 浏览 评分:0.0
题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin >>n; if(n>54…… 题解列表 2022年02月23日 0 点赞 0 评论 184 浏览 评分:0.0
很简单的思路 有需要可以看看 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList;import java.util.Collections;import java.util.Scanner;publ…… 题解列表 2022年02月23日 0 点赞 0 评论 134 浏览 评分: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 评论 108 浏览 评分:9.9
蓝桥杯历届试题-回文数字 摘要:解题思路:代码思路有点乱注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,a; int i,j,k,count=0; scanf("%d",&n); f…… 题解列表 2022年02月12日 0 点赞 0 评论 79 浏览 评分:0.0
两组判断解题 摘要:解题思路:注意事项:参考代码:#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 评论 82 浏览 评分:0.0
蓝桥杯历届试题-回文数字(C语言版)超级简单循环搞定 摘要:## 简单做法见代码 ```c #include int main() { int n; int count = 0; scanf("%d", &n); …… 题解列表 2022年02月06日 0 点赞 0 评论 169 浏览 评分:9.9
递归翻转字符串 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2022年02月04日 0 点赞 0 评论 110 浏览 评分:0.0