题解 1434: 蓝桥杯历届试题-回文数字

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蓝桥杯历届试题-回文数字

摘要:解题思路:注意事项:参考代码: #include"bits/stdc++.h" using namespace std; int main(){  int n;  int flag=0; ……

hhhhhhhhhhhhhhhh谢谢你

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool flag = 0; int n; cin >> n; int……

蓝桥杯历届试题-回文数字 Python!!

摘要:解题思路:利用循环嵌套实现对10000~999999的遍历而各位数之和,我们可以先将其转换为字符串然后遍历字符串,遍历过程中将元素转换回整形,并将其相加与记录最后用字符串的正逆序输出判断是否对称完成注……

暴力求解,加标志位

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){    int n;int f=1;    int sum=0,num=0; scanf("%d",&n……

蓝桥杯历届试题-回文数字

摘要:解题思路:代码思路有点乱注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,a; int i,j,k,count=0; scanf("%d",&n); f……

两组判断解题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int judge1(int n){ int a[6],len,i=0,j=0; if(n<100000) len=5; else le……

递归翻转字符串

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a……