简单易懂(C语言代码) 摘要:#include<stdio.h>int isP(int x){ int temp = 0, p = x; while (x) { temp = temp *…… 题解列表 2018年03月08日 1 点赞 0 评论 969 浏览 评分:0.0
蓝桥杯历届试题-回文数字 最原始的方法(C语言代码) 摘要:解题思路:注意事项:C语言用bool类型要加头文件 #include <stdbool.h>参考代码:#include <stdio.h>#include <stdbool.h>bool JudgeP…… 题解列表 2018年12月20日 0 点赞 0 评论 482 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要:从 10000 直接循环到 999999,先判断各位数字和是不是与所给数相等,不相等直接判断下一个数,如果相等用 equal 函数判断是否是回文数。#include <bits/stdc++.h> …… 题解列表 2021年12月26日 0 点赞 0 评论 138 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(C++代码) 摘要: #include using namespace std; int main() { int n,count=0; cin>>n; …… 题解列表 2020年02月14日 0 点赞 0 评论 316 浏览 评分:0.0
写题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,count2=0; scanf("%d",&n); …… 题解列表 2022年03月14日 0 点赞 0 评论 202 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(C语言代码) 摘要:解题思路: 遍历一遍查找所有解,然后输出。 注意事项:参考代码:#include<stdio.h> #include<stdlib.h> long ss[90]; int main(…… 题解列表 2020年08月14日 0 点赞 0 评论 198 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(Python代码) 摘要:粗暴的方法 ```python def find( min = 10000, max = 1000000): n = input() try: n …… 题解列表 2019年12月25日 0 点赞 0 评论 598 浏览 评分: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 评论 89 浏览 评分:0.0
c代码记录之回文数字 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int fun5(int m){ int i,j,k,t=0; for(i=1;i<=9;i++) …… 题解列表 2023年11月22日 0 点赞 0 评论 62 浏览 评分:0.0
(水题)蓝桥杯历届试题-回文数字-题解(Java代码) 摘要:**注意第一个数字是不可能为0的,所以下面的i都是从1开始,其他的数字可能为0,本题就是要找到等于n的三个数字,至于回文只要我们输出时候注意就可以了** ```java import java…… 题解列表 2020年04月28日 0 点赞 0 评论 341 浏览 评分:0.0